From: Jehan-Guillaume (ioguix) de Rorthais Date: Mon, 6 Sep 2010 16:48:15 +0000 (+0200) Subject: Fix a bug where clicking on "Object not found" in the browser tree X-Git-Tag: REL_5-0-BETA-1~10 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=63e604053df3d6bf61bdf1cec62153d5dc66e910;p=phppgadmin.git Fix a bug where clicking on "Object not found" in the browser tree This action is suppose to reload the node but was actually just rising a js error and not reloading it. --- diff --git a/classes/Misc.php b/classes/Misc.php index 032a7b69..eeed5eec 100644 --- a/classes/Misc.php +++ b/classes/Misc.php @@ -1863,7 +1863,7 @@ } } else { $msg = isset($attrs['nodata']) ? $attrs['nodata'] : $lang['strnoobjects']; - echo "icon('ObjectNotFound'), "\" />\n"; + echo "icon('ObjectNotFound'), "\" />\n"; } if (!isset($attrs['nofoot']) || $attrs['nofoot'] === false) {