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;