[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_7-10695-g10bbd76

The branch, master has been updated via 10bbd76fc190ffb681e9c978e781f200c5da027b (commit) from 3ac470ec00c851b698bd3a23efbb3a5ee70e1173 (commit) - Log ----------------------------------------------------------------- commit 10bbd76fc190ffb681e9c978e781f200c5da027b Author: Michal Čihař <michal@cihar.com> Date: Thu Oct 21 11:32:49 2010 +0200 bug #3087682 [interface] Do not apply LeftFrameDBSeparator on first character. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 1 + libraries/List_Database.class.php | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 65c9b0b..604683c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -117,6 +117,7 @@ tables. - rfe #2956556 [interface] Allow to wrap enum values. - bug #1669459 [interface] Do not automatically mark PDF schema rows to delete +- bug #3087682 [interface] Do not apply LeftFrameDBSeparator on first character. 3.3.9.0 (not yet released) diff --git a/libraries/List_Database.class.php b/libraries/List_Database.class.php index f793ed4..c94f438 100644 --- a/libraries/List_Database.class.php +++ b/libraries/List_Database.class.php @@ -308,7 +308,7 @@ require_once './libraries/List.class.php'; // have the db name, the separator, then the rest which // might contain a separator // like dbname_the_rest - $pos = strpos($db, $separator); + $pos = strpos($db, $separator, 1); if ($pos !== false) { break; hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař