Skip to content
Snippets Groups Projects
Commit 002e23ab authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: problem with double quote

parent b77ef8c2
No related branches found
No related tags found
No related merge requests found
......@@ -348,7 +348,8 @@ elseif (isset($_GET["action"]) && $_GET["action"] == 'edit')
$menu = new Menubase($db);
$result=$menu->fetch($_GET['menuId']);
//var_dump($menu);
// MenuId Parent
print '<tr><td>'.$langs->trans('MenuIdParent').'</td>';
//$menu_handler
......
......@@ -281,7 +281,7 @@ class Menubase
$this->level = $obj->level;
$this->leftmenu = $obj->leftmenu;
$this->perms = $obj->perms;
$this->enabled = $obj->enabled;
$this->enabled = str_replace("\"","'",$obj->enabled);
$this->user = $obj->user;
$this->tms = $this->db->jdate($obj->tms);
}
......
This diff is collapsed.
This diff is collapsed.
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