From 10bbd76fc190ffb681e9c978e781f200c5da027b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 21 Oct 2010 11:32:49 +0200 Subject: [PATCH] bug #3087682 [interface] Do not apply LeftFrameDBSeparator on first character. --- ChangeLog | 1 + libraries/List_Database.class.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 65c9b0bfc..604683c51 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 f793ed424..c94f4388f 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;