Quote:
Originally Posted by IR15H
Hello again,
Another thing I have noticed concerns table prefixes. I currently have all my vbulletin tables prefixed with vb_ in my database, but have noticed that the LDM ones are installed without this prefix. Is it possible to make it so that in future versions LDM tables also include such a prefix, if one is set?
|
Actually, it does have a prefix, just a different one by default, and it can be changed.
See includes/local_links_init.php, around line 48:
Code:
// Database Table Prefix
define('THIS_TABLE', 'local_');
// Uncomment this to use the standard VB table prefix...
// define ('THIS_TABLE', TABLE_PREFIX);
You can either change 'local_' to be what you want or you can remove the comment symbols (the //) from the second define statement to use the same prefix as vb (I would not recommend that because you might end up with one database table trying to serve two different masters)
Of course, if you change this in a live system, you will need to use a tool like phpmyadmin to rename your existing tables.