View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0015479 | phpList 3 plugins | General | public | 17-05-10 16:06 | 06-02-19 11:35 |
Reporter | adrian15 | Assigned To | |||
Priority | normal | Severity | major | Reproducibility | always |
Status | new | Resolution | open | ||
Summary | 0015479: Rss plugin initialise page broken patch | ||||
Description | This patch enables initialise page and it also fixes initialise function code so that table prefix is taken into account. | ||||
Additional Information | This is based on svn revision 1703. | ||||
Tags | No tags attached. | ||||
child of | 0015498 | new | Rss manager is totally broken on svn |
17-05-10 16:06
|
F10_rss_manager_fix_1.patch (1,450 bytes)
diff -urN saidi_F09_rss_manager_activado//lists/admin/plugins/rssmanager/initiliase.php saidi_F10_rss_manager_fix_1//lists/admin/plugins/rssmanager/initiliase.php --- saidi_F09_rss_manager_activado//lists/admin/plugins/rssmanager/initiliase.php 1970-01-01 01:00:00.000000000 +0100 +++ saidi_F10_rss_manager_fix_1//lists/admin/plugins/rssmanager/initiliase.php 2010-05-16 05:14:39.000000000 +0200 @@ -0,0 +1,14 @@ +<? + +$plugin = $GLOBALS["plugins"]['rssmanager']; +if (!is_object($plugin)) { + print $GLOBALS['I18N']->get('Error initialising rss manager'); + return; +} + +print $GLOBALS['I18N']->get('Initialising rss Manager').'<br/>'; +$plugin->initialise(); + +print $GLOBALS['I18N']->get('OK').'<br/>'; + +# TODO: IMPLEMENT menu function - print $plugin->menu(); diff -urN saidi_F09_rss_manager_activado//lists/admin/plugins/rssmanager.php saidi_F10_rss_manager_fix_1//lists/admin/plugins/rssmanager.php --- saidi_F09_rss_manager_activado//lists/admin/plugins/rssmanager.php 2010-05-16 05:09:54.000000000 +0200 +++ saidi_F10_rss_manager_fix_1//lists/admin/plugins/rssmanager.php 2010-05-16 05:14:39.000000000 +0200 @@ -74,8 +74,10 @@ function initialise() { foreach ($this->DBstruct as $table => $structure) { - print $table . '<br/>'; - Sql_Create_Table($table, $structure); + + print $GLOBALS["table_prefix"] . $table . '<br/>'; + Sql_Create_Table($GLOBALS["table_prefix"].$table, $structure); + } } |
Date Modified | Username | Field | Change |
---|---|---|---|
17-05-10 16:06 | adrian15 | New Issue | |
17-05-10 16:06 | adrian15 | File Added: F10_rss_manager_fix_1.patch | |
27-05-10 20:04 | h2b2 | Relationship added | child of 0015498 |
12-05-11 01:35 | michiel | Target Version | => plugin Development |
05-06-13 17:29 | michiel | Project | phpList 3 application => rssmanager |
05-06-13 17:29 | michiel | Category | RSS => General |
06-02-19 11:35 |
|
Project | rssmanager => phpList 3 plugins |