Code fixes
This commit is contained in:
parent
a93ba86ce0
commit
c5101ae5ea
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/* Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2012-2013 Juanjo Menent <jmenent@2byte.es>
|
||||
* Copyright (C) 2012-2015 Juanjo Menent <jmenent@2byte.es>
|
||||
* Copyright (C) 2013 Philippe Grand <philippe.grand@atoo-net.com>
|
||||
* Copyright (C) 2015 Alexandre Spangaro <alexandre.spangaro@gmail.com>
|
||||
*
|
||||
@ -199,7 +199,7 @@ $form=new Form($db);
|
||||
|
||||
llxHeader('',$langs->trans("DonationsSetup"),'DonConfiguration');
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("DonationsSetup"),$linkback,title_setup);
|
||||
print_fiche_titre($langs->trans("DonationsSetup"),$linkback,'title_setup');
|
||||
|
||||
$head = donation_admin_prepare_head();
|
||||
|
||||
@ -225,8 +225,8 @@ $var=! $var;
|
||||
print '<tr '.$bc[$var].'>';
|
||||
|
||||
print '<td width="50%">';
|
||||
$label = $langs->trans(AccountAccounting);
|
||||
print '<label for="'.$langs->trans(AccountAccounting).'">' . $label . '</label></td>';
|
||||
$label = $langs->trans("AccountAccounting");
|
||||
print '<label for="'.$langs->trans("AccountAccounting").'">' . $label . '</label></td>';
|
||||
print '<td>';
|
||||
print '<input type="text" size="10" id="DONATION_ACCOUNTINGACCOUNT" name="DONATION_ACCOUNTINGACCOUNT" value="' . $conf->global->DONATION_ACCOUNTINGACCOUNT . '">';
|
||||
print '</td><td align="right">';
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
<?php
|
||||
/* Copyright (C) 2015 Alexandre Spangaro <alexandre.spangaro@gmail.com>
|
||||
* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -61,7 +62,7 @@ $textobject=$langs->transnoentitiesnoconv("Donations");
|
||||
llxHeader('',$langs->trans("DonationsSetup"));
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("DonationsSetup"),$linkback,title_setup);
|
||||
print_fiche_titre($langs->trans("DonationsSetup"),$linkback,'title_setup');
|
||||
|
||||
|
||||
$head = donation_admin_prepare_head();
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
<?php
|
||||
/* Copyright (C) 2014 Alexandre Spangaro <alexandre.spangaro@gmail.com>
|
||||
* Copyright (C) 2015 Frederic France <frederic.france@free.fr>
|
||||
* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -31,7 +32,7 @@ $langs->load("banks");
|
||||
$langs->load("bills");
|
||||
|
||||
// Security check
|
||||
$socid = GETPOST('socid', int);
|
||||
$socid = GETPOST('socid', 'int');
|
||||
if ($user->societe_id) $socid=$user->societe_id;
|
||||
$result = restrictedArea($user, 'loan', '', '', '');
|
||||
|
||||
|
||||
@ -741,7 +741,7 @@ if ($resql)
|
||||
if ($details<0) dol_print_error($db);
|
||||
foreach ($details as $pdluo)
|
||||
{
|
||||
if ( $action == 'editline' && GETPOST('lineid',int)==$pdluo->id )
|
||||
if ( $action == 'editline' && GETPOST('lineid','int')==$pdluo->id )
|
||||
{ //Current line edit
|
||||
print "\n".'<tr><td colspan="9">';
|
||||
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST"><input type="hidden" name="pdluoid" value="'.$pdluo->id.'"><input type="hidden" name="action" value="updateline"><input type="hidden" name="id" value="'.$id.'"><table class="noborder" width="100%"><tr><td width="10%"></td>';
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
* Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
|
||||
* Copyright (C) 2011-2013 Philippe Grand <philippe.grand@atoo-net.com>
|
||||
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
||||
* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -292,7 +293,7 @@ llxHeader("",$langs->trans("ProjectsSetup"));
|
||||
$form=new Form($db);
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,title_setup);
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,'title_setup');
|
||||
|
||||
$head=project_admin_prepare_head();
|
||||
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||||
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
||||
* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -64,7 +65,7 @@ $textobject=$langs->transnoentitiesnoconv("Project");
|
||||
llxHeader("",$langs->trans("ProjectsSetup"));
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,title_setup);
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,'title_setup');
|
||||
|
||||
|
||||
$head = project_admin_prepare_head();
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2012 Regis Houssin <regis.houssin@capnetworks.com>
|
||||
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
|
||||
* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
@ -64,7 +65,7 @@ $textobject=$langs->transnoentitiesnoconv("Project");
|
||||
llxHeader("",$langs->trans("ProjectsSetup"));
|
||||
|
||||
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,title_setup);
|
||||
print_fiche_titre($langs->trans("ProjectsSetup"),$linkback,'title_setup');
|
||||
|
||||
$head = project_admin_prepare_head();
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user