[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 02/13: Translation
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 02/13: Translation |
Date: |
Sat, 19 Jan 2019 16:52:58 -0500 (EST) |
sparkyx pushed a commit to branch master
in repository noalyss.
commit f078217f790cdc6cf9ee9642b247b919e87c02ba
Author: Dany De Bontridder <address@hidden>
Date: Fri Dec 28 10:40:48 2018 +0100
Translation
---
include/class/acc_ledger.class.php | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/include/class/acc_ledger.class.php
b/include/class/acc_ledger.class.php
index faf46e4..440c593 100644
--- a/include/class/acc_ledger.class.php
+++ b/include/class/acc_ledger.class.php
@@ -746,6 +746,7 @@ class Acc_Ledger extends jrn_def_sql
function input($p_array=null, $p_readonly=0)
{
global $g_parameter, $g_user;
+ $http=new HttpInput();
$this->nb=$this->get_min_row();
if ($p_readonly==1)
return $this->confirm($p_array);
@@ -771,7 +772,8 @@ class Acc_Ledger extends jrn_def_sql
$wLedger=$this->select_ledger('ODS', 2,FALSE);
if ($wLedger==null)
throw new Exception(_('Pas de journal disponible'));
-
$wLedger->javascript="onChange='update_name();update_predef(\"ods\",\"t\",\"".$_REQUEST['ac']."\");$add_js'";
+ $ac=$http->request("ac");
+
$wLedger->javascript="onChange='update_name();update_predef(\"ods\",\"t\",\"".$ac."\");$add_js'";
$label=" Journal ".Icon_Action::infobulle(2);
$ret.="<table>";
@@ -787,8 +789,11 @@ class Acc_Ledger extends jrn_def_sql
$op->set('ledger', $this->id);
$op->set('ledger_type', "ODS");
$op->set('direct', 't');
- $url=http_build_query(array('action'=>'use_opd',
'p_jrn_predef'=>$this->id,
- 'ac'=>$_REQUEST['ac'], 'gDossier'=>dossier::id()));
+ $url=http_build_query(
+ array('action'=>'use_opd',
+ 'p_jrn_predef'=>$this->id,
+ 'ac'=>$ac,
+ 'gDossier'=>dossier::id()));
echo $op->form_get('do.php?'.$url);
echo '</div>';
@@ -1031,12 +1036,12 @@ class Acc_Ledger extends jrn_def_sql
/* check for a double reload */
if (isset($mt)&&$this->db->count_sql('select jr_mt from jrn where
jr_mt=$1',
array($mt))!=0)
- throw new Exception('Double Encodage', 5);
+ throw new Exception(_('Double Encodage'), 5);
// Check the periode and the date
if (isDate($e_date)==null)
{
- throw new Exception('Date invalide', 2);
+ throw new Exception(_('Date invalide'), 2);
}
$periode=new Periode($this->db);
/* find the periode if we have enabled the check_periode
@@ -1060,7 +1065,7 @@ class Acc_Ledger extends jrn_def_sql
// Periode ferme
if ($this->is_closed($periode->p_id)==1)
{
- throw new Exception('Periode fermee', 6);
+ throw new Exception(_('Periode fermee'), 6);
}
/* check if we are using the strict mode */
if ($this->check_strict()==true)
- [Noalyss-commit] [noalyss] branch master updated (1971f32 -> ffb0255), Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 01/13: use of httpInput, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 13/13: Protect parameters, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 02/13: Translation,
Dany De Bontridder <=
- [Noalyss-commit] [noalyss] 04/13: Translation, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 05/13: Translation, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 06/13: Translation, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 08/13: remove commented code, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 09/13: PHP 7.2 incomptability : sizeof of not array, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 10/13: PHP 7.2 mistyped command, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 12/13: Typo, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 11/13: Database upgrade, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 07/13: Misc. Operation : input : Missing tag TR, Dany De Bontridder, 2019/01/19
- [Noalyss-commit] [noalyss] 03/13: Translation, Dany De Bontridder, 2019/01/19