Skip to content
Snippets Groups Projects
Commit 9edb9558 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: No duplicate alt

parent 7e202f2c
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
/**
* \file htdocs/admin/system/dolibarr.php
* \brief Page to show Dolibarr informations
* \version $Id$
* \version $Id: dolibarr.php,v 1.58 2011/07/13 13:15:17 eldy Exp $
*/
require("../../main.inc.php");
......@@ -163,7 +163,7 @@ if (function_exists('date_default_timezone_get'))
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("CurrentTimeZone").'</td><td>'; // Timezone server PHP
$a=date_default_timezone_get();
$a.=' ('.(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970)).')';
print $form->textwithtooltip($a,$txt,2,1,img_info());
print $form->textwithtooltip($a,$txt,2,1,img_info(''));
print '</td></tr>'."\n"; // value defined in http://fr3.php.net/manual/en/timezones.europe.php
}
else
......@@ -171,7 +171,7 @@ else
$var=!$var;
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("PHPServerOffsetWithGreenwich").'</td><td>';
$a=(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970));
print $form->textwithtooltip($a,$txt,2,1,img_info());
print $form->textwithtooltip($a,$txt,2,1,img_info(''));
print '</td></tr>'."\n";
}
$var=!$var;
......@@ -213,5 +213,5 @@ print '<tr '.$bc[$var].'><td width="300">=> '.$langs->trans("File encoding").'</
print '</table>';
print '<br>';
llxFooter('$Date$ - $Revision$');
llxFooter('$Date: 2011/07/13 13:15:17 $ - $Revision: 1.58 $');
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment