Commit 6c9880f2454952bcd31972a014c13a6ca82798da
1 parent
fe0f27ee
Exists in
master
and in
1 other branch
- correção de erro em inclusão de js em "acoes"
- correção de script sql de dados básicos no idioma padrão git-svn-id: http://svn.softwarepublico.gov.br/svn/cacic/cacic/trunk/gerente@555 fecfc0c7-e812-0410-ae72-849f08638ee7
Showing
2 changed files
with
11 additions
and
11 deletions
Show diff stats
admin/acoes.php
| ... | ... | @@ -194,7 +194,7 @@ function remove(box) |
| 194 | 194 | ?> |
| 195 | 195 | |
| 196 | 196 | <body background="../imgs/linha_v.gif" onLoad="verifica_status();"> |
| 197 | -<script language="JavaScript" type="text/javascript" src="../../include/cacic.js"></script> | |
| 197 | +<script language="JavaScript" type="text/javascript" src="../include/cacic.js"></script> | |
| 198 | 198 | <table width="90%" border="0" align="center"> |
| 199 | 199 | <tr> |
| 200 | 200 | <td class="cabecalho"><? echo $_GET['te_descricao_breve']; ?></td> |
| ... | ... | @@ -456,7 +456,7 @@ function remove(box) |
| 456 | 456 | </tr> |
| 457 | 457 | <tr> |
| 458 | 458 | <td> <div align="center"> |
| 459 | - <input name="submit" type="submit" value="<?=$oTranslator->_('Gravar informacoes');?>" onClick="SelectAll(this.form.elements['list1[]']);SelectAll(this.form.elements['list2[]']); SelectAll(this.form.elements['list4[]']); SelectAll(this.form.elements['list5[]']);return Confirma('Confirma Configuração de Ação?');" <? echo ($_SESSION['cs_nivel_administracao']<>1&&$_SESSION['cs_nivel_administracao']<>3?'disabled':'')?>> | |
| 459 | + <input name="submit" type="submit" value="<?=$oTranslator->_('Gravar informacoes');?>" onClick="SelectAll(this.form.elements['list1[]']);SelectAll(this.form.elements['list2[]']); SelectAll(this.form.elements['list4[]']); SelectAll(this.form.elements['list5[]']);return Confirma('<?=$oTranslator->_('Confirma Configuracao de Acao?');?>');" <? echo ($_SESSION['cs_nivel_administracao']<>1&&$_SESSION['cs_nivel_administracao']<>3?'disabled':'')?>> | |
| 460 | 460 | </div></td> |
| 461 | 461 | </tr> |
| 462 | 462 | <tr> | ... | ... |
instalador/sql/cacic_dados_basicos-pt_BR.sql
| ... | ... | @@ -210,16 +210,16 @@ INSERT INTO `so` |
| 210 | 210 | |
| 211 | 211 | /*!40000 ALTER TABLE `tipos_software` DISABLE KEYS */; |
| 212 | 212 | INSERT INTO `tipos_software` |
| 213 | - (`id_tipo_software`, `te_descricao_tipo_software`) | |
| 213 | + (`te_descricao_tipo_software`) | |
| 214 | 214 | VALUES |
| 215 | - (0, 'Versão Trial'), | |
| 216 | - (1, 'Correção/Atualização'), | |
| 217 | - (2, 'Sistema Interno'), | |
| 218 | - (3, 'Software Livre'), | |
| 219 | - (4, 'Software Licenciado'), | |
| 220 | - (5, 'Software Suspeito'), | |
| 221 | - (6, 'Software Descontinuado'), | |
| 222 | - (7, 'Jogos e Similares'); | |
| 215 | + ('Versão Trial'), | |
| 216 | + ('Correção/Atualização'), | |
| 217 | + ('Sistema Interno'), | |
| 218 | + ('Software Livre'), | |
| 219 | + ('Software Licenciado'), | |
| 220 | + ('Software Suspeito'), | |
| 221 | + ('Software Descontinuado'), | |
| 222 | + ('Jogos e Similares'); | |
| 223 | 223 | /*!40000 ALTER TABLE `tipos_software` ENABLE KEYS */; |
| 224 | 224 | |
| 225 | 225 | -- | ... | ... |