source:
extensions/MostCommented/maintain.inc.php
@
31991
Last change on this file since 31991 was 27196, checked in by , 11 years ago | |
---|---|
File size: 403 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | function plugin_install() |
4 | { |
5 | $q = pwg_query('SHOW COLUMNS FROM ' . HISTORY_TABLE . ' LIKE "section"'); |
6 | $section = pwg_db_fetch_array($q); |
7 | $type = $section['Type']; |
8 | |
9 | if (substr_count($type, 'most_commented') == 0) |
10 | { |
11 | $type = strtr($type , array(')' => ',\'most_commented\')')); |
12 | } |
13 | |
14 | pwg_query('ALTER TABLE ' . HISTORY_TABLE . ' CHANGE section section ' . $type . ' DEFAULT NULL'); |
15 | } |
Note: See TracBrowser
for help on using the repository browser.