Changeset 6000 for trunk/interface/blog/sync.php
- Timestamp:
- 05/23/08 21:16:38 (6 months ago)
- Files:
-
- 1 modified
-
trunk/interface/blog/sync.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/blog/sync.php
r5557 r6000 35 35 WHERE id = tag AND blogid = ".getBlogId()." AND entry = {$entry['id']} 36 36 ORDER BY name"); 37 while(list($tag) = mysql_fetch_row($result))37 while(list($tag) = POD::fetch($result,'row')) 38 38 echo '<tag>', htmlspecialchars($tag), '</tag>', "\r\n"; 39 mysql_free_result($result);39 POD::free($result); 40 40 echo '<location>', htmlspecialchars($entry['location']), '</location>', "\r\n"; 41 41 echo '<comments>', $entry['comments'], '</comments>', "\r\n";
