Parent Directory
|
Revision Log
|
Revision Graph
Further refined the redirect so that it works a little more consistently.
| 1 | <?php |
| 2 | // $Id$ |
| 3 | |
| 4 | function crossite_install() { |
| 5 | switch ($GLOBAL['db_type']) { |
| 6 | case 'mysql': |
| 7 | case 'mysqli': |
| 8 | db_query("CREATE TABLE {crossite_domains_tids} ( |
| 9 | tid int unsigned NOT NULL default '0', |
| 10 | conf_path varchar(100) NOT NULL |
| 11 | PRIMARY KEY (tid, conf_path) |
| 12 | ) /*!40100 DEFAULT CHARACTER SET utf8 */"); |
| 13 | break; |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |