Changeset 1516 for trunk/gregarius/util.php
- Timestamp:
- 07/05/06 22:41:43 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/util.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/util.php
r1496 r1516 30 30 31 31 function getLastModif() { 32 static $ret; 33 if ($ret == 0) { 34 $res = rss_query("select unix_timestamp(max(added)) as max_added from ".getTable("item")); 35 list ($ret) = rss_fetch_row($res); 36 } 37 return $ret; 32 return getProperty('__meta__','meta.lastupdate'); 38 33 } 39 34
