Changeset 3655 for extensions/PWG_Stuffs/modules
- Timestamp:
- Jul 21, 2009, 7:21:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/PWG_Stuffs/modules/piclenswall/main.inc.php
r3613 r3655 17 17 if( empty($page['category'])) 18 18 { 19 $rssfeed = get_root_url().PICLENS_PATH.'piclenswall-rss.php?/categories';19 $rssfeed = $obj->root_site_piclens.PICLENS_PATH.'piclenswall-rss.php?/categories'; 20 20 } 21 21 else … … 26 26 if (@$obj->my_config['piclens_wall_specif'] == 'common') // pas de specificites 3DWall : utilisation des parametres piclens 27 27 { 28 $rssfeed = get_root_url().PICLENS_PATH.'piclens-rss.php?/category/'.(empty($page['category']['permalink']) ? $page['category']['id'] : $page['category']['permalink']);28 $rssfeed = $obj->root_site_piclens.PICLENS_PATH.'piclens-rss.php?/category/'.(empty($page['category']['permalink']) ? $page['category']['id'] : $page['category']['permalink']); 29 29 } 30 30 elseif (@in_array($page['category']['id'], $obj->my_config['piclens_wall_categories'])) 31 31 { 32 32 // categorie pour laquelle le mur est parametre. 33 $rssfeed = get_root_url().PICLENS_PATH.'piclenswall-rss.php?/category/'.(empty($page['category']['permalink']) ? $page['category']['id'] : $page['category']['permalink']);33 $rssfeed = $obj->root_site_piclens.PICLENS_PATH.'piclenswall-rss.php?/category/'.(empty($page['category']['permalink']) ? $page['category']['id'] : $page['category']['permalink']); 34 34 } 35 35 }
Note: See TracChangeset
for help on using the changeset viewer.