From 35cf90434e80c0d25426b51385c6bdaeafe59be7 Mon Sep 17 00:00:00 2001 From: Steven Mondji-Lerider Date: Thu, 11 Oct 2012 11:58:12 +0000 Subject: [PATCH] bugfix, forgot to remove a print_r --- install/upgrades/1.1.php | 1 - 1 file changed, 1 deletion(-) diff --git a/install/upgrades/1.1.php b/install/upgrades/1.1.php index c6005df5..0fe511f4 100644 --- a/install/upgrades/1.1.php +++ b/install/upgrades/1.1.php @@ -43,7 +43,6 @@ $db->query("select Db from mysql.db ;"); $query2=array(); while($db->next_record()){ $dbn=preg_replace("/^([A-Za-z0-9]*)_([A-Za-z0-9]*)/","$1\_$2",$db->f('Db')); - print_r( " update mysql.db set Db=replace(Db,'".$db->f('Db')."','".$dbn."');"); $query2[]="update mysql.db set Db=replace(Db,'".$db->f('Db')."','".$dbn."');"; }