Changeset 1625
- Timestamp:
- 11/02/06 07:37:13 (2 years ago)
- Location:
- trunk/gregarius
- Files:
-
- 2 modified
-
cls/wrappers/item.php (modified) (1 diff)
-
themes/default/web/item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/cls/wrappers/item.php
r1599 r1625 46 46 } 47 47 if (getConfig('rss.output.usepermalinks')) { 48 list ($ply, $plm, $pld) = explode(":", rss_date("Y:m:d", $GLOBALS['rss'] -> currentItem -> date, false)); 49 $ptitle = ($label."'".$GLOBALS['rss'] -> currentItem -> parent -> escapedTitle 50 ."/$ply/$plm/$pld/".$GLOBALS['rss'] -> currentItem -> escapedTitle."'"); 51 } 52 return $ptitle; 48 //list ($ply, $plm, $pld) = explode(":", rss_date("Y:m:d", $GLOBALS['rss'] -> currentItem -> date, false)); 49 $ptitle = ($label."'". htmlentities($GLOBALS['rss'] -> currentItem -> title,ENT_QUOTES ,'UTF-8') ."'"); 50 } 51 return @$ptitle; 53 52 } 54 53 -
trunk/gregarius/themes/default/web/item.php
r1561 r1625 6 6 <?php } ?> 7 7 <?php if(!hidePrivate()) { ?> 8 <a id="sa<?php echo rss_item_id(); ?>" href="#" onclick="_es(<?php echo rss_item_id(); ?>,<?php echo rss_item_flags(); ?>,<?php echo rss_item_cid(); ?>); return false;">9 <img src="<?php echo getExternalThemeFile('media/edit.gif'); ?>" alt=" edit" />8 <a title="<?php echo __('Edit Item Properties'); ?>" id="sa<?php echo rss_item_id(); ?>" href="#" onclick="_es(<?php echo rss_item_id(); ?>,<?php echo rss_item_flags(); ?>,<?php echo rss_item_cid(); ?>); return false;"> 9 <img src="<?php echo getExternalThemeFile('media/edit.gif'); ?>" alt="<?php echo __('Edit Item Properties'); ?>" /> 10 10 </a> 11 11 <?php } ?>
