Mr. Alien
Mr. Alien

Reputation: 157334

Why underscore in my database name is spoiling phpMyAdmin database list

Recently I created a database with a name test_test in phpMyAdmin and just after I created it, the list of database on the left hand side spoiled suddenly, Is this a bug or I should ignore _ in database name?

Preview

localhost screen

enter image description here

enter image description here



On selecting test_test database

enter image description here

Upvotes: 6

Views: 2716

Answers (2)

dev-null-dweller
dev-null-dweller

Reputation: 29462

It's not a bug, it's a feature

See http://wiki.phpmyadmin.net/pma/Config#LeftFrameDBSeparator you can change it to other pattern or disable by setting LeftFrameDBTree to false

Upvotes: 2

Marwelln
Marwelln

Reputation: 29413

PHPMyAdmin is grouping your databases if an underscore is used. prefix_name. They still work like usual, they are just displayed differently in PHPMyAdmin.

If you don't like it you can disable it.

Upvotes: 7

Related Questions