Changeset 2103
- Timestamp:
- 03/14/08 05:11:07 (2 months ago)
- Files:
-
- alternc/trunk/bureau/admin/main.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
alternc/trunk/bureau/admin/main.php
r2098 r2103 51 51 # this should work, since the debian package installs it in 52 52 # /usr/share/php, which is in the include path 53 if (include_once('magpierss/rss_fetch.inc')) { 54 $rss = fetch_rss( variable_get('rss_feed') ); 53 $rss_url = variable_get('rss_feed'); 54 $inc = @include_once('magpierss/rss_fetch.inc'); 55 if ($inc && $rss_url) { 56 $rss = fetch_rss($rss_url); 55 57 56 58 if ($rss) {
