Private GIT

Skip to content
Snippets Groups Projects
Commit c21959ae authored by Miha Petkovsek's avatar Miha Petkovsek
Browse files

Fixed #2631

parent bbeb4112
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ require_once( dirname(__FILE__) . '/../../../functions/functions.php' ); ...@@ -5,7 +5,7 @@ require_once( dirname(__FILE__) . '/../../../functions/functions.php' );
# initialize user object # initialize user object
$Database = new Database_PDO; $Database = new Database_PDO;
$User = new User ($Database); $User = new User ($Database);
$Admin = new Admin ($Database); $Admin = new Admin ($Database, false);
$Tools = new Tools ($Database); $Tools = new Tools ($Database);
$Result = new Result (); $Result = new Result ();
......
...@@ -10,7 +10,7 @@ require_once( dirname(__FILE__) . '/../../../functions/functions.php' ); ...@@ -10,7 +10,7 @@ require_once( dirname(__FILE__) . '/../../../functions/functions.php' );
# initialize user object # initialize user object
$Database = new Database_PDO; $Database = new Database_PDO;
$User = new User ($Database); $User = new User ($Database);
$Admin = new Admin ($Database); $Admin = new Admin ($Database, false);
$Tools = new Tools ($Database); $Tools = new Tools ($Database);
$Result = new Result (); $Result = new Result ();
......
...@@ -4,12 +4,13 @@ ...@@ -4,12 +4,13 @@
---------------------------- ----------------------------
+ do not show statistics in dashboard widget for disabled modules (#2602); + do not show statistics in dashboard widget for disabled modules (#2602);
== 1.4.1 == 1.4.1
Bugfixes: Bugfixes:
---------------------------- ----------------------------
+ Fixed upgrade queries issues from 1.3.2 to 1.4; + Fixed upgrade queries issues from 1.3.2 to 1.4;
+ Fixed boolean printout in footer (#2625); + Fixed boolean printout in footer (#2625);
+ Fixed BGP Admin isn't working (#2631);
== 1.4 == 1.4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment