Skip to content

Commit

Permalink
Fix: bug #34192: Some Spanish bank accounts give control key error, a…
Browse files Browse the repository at this point in the history
…lthough they are correct
  • Loading branch information
Juanjo Menent committed Sep 2, 2011
1 parent 0e3009e commit 4079240
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htdocs/admin/menus/edit.php
Expand Up @@ -261,7 +261,7 @@ function init_topleft()
if ($res)
{

while ($menu = $db->fetch_array($res))
while ($menu = $db->fetch_array ($res))
{
$parent_rowid = $menu['rowid'];
$parent_mainmenu = $menu['mainmenu'];
Expand Down
2 changes: 1 addition & 1 deletion htdocs/admin/menus/index.php
Expand Up @@ -300,7 +300,7 @@
$num = $db->num_rows($res);

$i = 1;
while ($menu = $db->fetch_array($res))
while ($menu = $db->fetch_array ($res))
{
if (! empty($menu['langs'])) $langs->load($menu['langs']);
$titre = $langs->trans($menu['titre']);
Expand Down
2 changes: 1 addition & 1 deletion htdocs/admin/menus/menu.js.php
Expand Up @@ -32,7 +32,7 @@
if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1);
if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');

session_cache_limiter(FALSE);
session_cache_limiter( FALSE );

require_once("../../master.inc.php");
require_once(DOL_DOCUMENT_ROOT."/lib/functions.lib.php");
Expand Down

0 comments on commit 4079240

Please sign in to comment.