View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0015497 | phpList 3 plugins | General | public | 27-05-10 19:51 | 06-02-19 11:35 |
Reporter | adrian15 | Assigned To | |||
Priority | normal | Severity | feature | Reproducibility | always |
Status | new | Resolution | open | ||
Summary | 0015497: RssManager - Hourly frecuency | ||||
Description | I have implemented the hourly frecuency for rssmanager plugin. Now you can set that a rss is going to be checked and sent in 60 minutes time. | ||||
Additional Information | Based on svn revision 1703. | ||||
Tags | No tags attached. | ||||
child of | 0015498 | new | Rss manager is totally broken on svn |
27-05-10 19:51
|
G09_rssmanager_hourly_feature.patch (1,227 bytes)
diff -urN rssfixes_G08_rssmanager_processSuccesFailure_rssitems_check_fix/lists/admin/plugins/rssmanager.php rssfixes_G09_rssmanager_hourly_feature/lists/admin/plugins/rssmanager.php --- rssfixes_G08_rssmanager_processSuccesFailure_rssitems_check_fix/lists/admin/plugins/rssmanager.php 2010-05-17 09:06:00.000000000 +0200 +++ rssfixes_G09_rssmanager_hourly_feature/lists/admin/plugins/rssmanager.php 2010-05-17 16:57:09.000000000 +0200 @@ -62,6 +62,8 @@ $GLOBALS['rssfrequencies']= array ( # 'hourly' => $strHourly, # to be added at some other point + 'hourly' => $GLOBALS['I18N']->get('Hourly' + ), 'daily' => $GLOBALS['I18N']->get('Daily' ), 'weekly' => $GLOBALS['I18N']->get('Weekly'), @@ -207,6 +209,9 @@ case 'monthly' : $_POST['repeatinterval']= 40320; break; + case 'hourly' : + $_POST['repeatinterval']= 60; + break; case 'daily' : default : $_POST['repeatinterval']= 1440; @@ -464,6 +469,9 @@ case 'monthly' : $interval= 'interval 1 month'; break; + case 'hourly' : + $interval= 'interval 1 hour'; + break; case 'daily' : default : $interval= 'interval 1 day'; |
Date Modified | Username | Field | Change |
---|---|---|---|
27-05-10 19:51 | adrian15 | New Issue | |
27-05-10 19:51 | adrian15 | File Added: G09_rssmanager_hourly_feature.patch | |
27-05-10 20:07 | h2b2 | Relationship added | child of 0015498 |
10-05-11 22:57 | michiel | Project | phpList 3 application => rssmanager |
06-02-19 11:35 |
|
Project | rssmanager => phpList 3 plugins |
06-02-19 11:35 |
|
Category | Plugin API => General |