bug #3087682 [interface] Do not apply LeftFrameDBSeparator on first character.

This commit is contained in:
Michal Čihař
2010-10-21 11:32:49 +02:00
parent 3ac470ec00
commit 10bbd76fc1
2 changed files with 2 additions and 1 deletions

View File

@@ -117,6 +117,7 @@
tables. tables.
- rfe #2956556 [interface] Allow to wrap enum values. - rfe #2956556 [interface] Allow to wrap enum values.
- bug #1669459 [interface] Do not automatically mark PDF schema rows to delete - 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) 3.3.9.0 (not yet released)

View File

@@ -308,7 +308,7 @@ require_once './libraries/List.class.php';
// have the db name, the separator, then the rest which // have the db name, the separator, then the rest which
// might contain a separator // might contain a separator
// like dbname_the_rest // like dbname_the_rest
$pos = strpos($db, $separator); $pos = strpos($db, $separator, 1);
if ($pos !== false) { if ($pos !== false) {
break; break;