Changeset 1470
- Timestamp:
- 09/17/09 16:48:45 (14 years ago)
- Location:
- plugins/sitemaps
- Files:
-
- 2 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/sitemaps/_define.php
r1297 r1470 14 14 /* Description*/ "Add XML Sitemaps", 15 15 /* Author */ "Pep and contributors", 16 /* Version */ '1.0 -RC4',16 /* Version */ '1.0', 17 17 /* Permissions */ 'contentadmin' 18 18 ); -
plugins/sitemaps/_prepend.php
r975 r1470 11 11 if (!defined('DC_RC_PATH')) { return; } 12 12 13 $GLOBALS['__autoload']['dcSitemaps'] = dirname(__FILE__).'/ class.dc.sitemaps.php';13 $GLOBALS['__autoload']['dcSitemaps'] = dirname(__FILE__).'/inc/class.dc.sitemaps.php'; 14 14 15 15 // Behavior(s) … … 36 36 if (!$core->blog->settings->sitemaps_active) { 37 37 self::p404(); 38 return; 38 39 } 39 40 … … 45 46 else { 46 47 self::serveDocument('sitemap.xml','text/xml'); 47 exit;48 48 } 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.