Changeset 5832
- Timestamp:
- 04/28/08 21:20:32 (9 months ago)
- Files:
-
- 1 modified
-
trunk/interface/owner/data/correct/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/data/correct/index.php
r5285 r5832 108 108 109 109 if ($result = POD::query("SELECT id, name, parent, homepage, comment, entry, isFiltered FROM {$database['prefix']}Comments WHERE blogid = $blogid")) { 110 while ($comment = mysql_fetch_assoc($result)) {110 while ($comment = POD::fetch($result)) { 111 111 setProgress($item++ / $items * 100, _t('댓글과 방명록 데이터를 교정하고 있습니다.')); 112 112 $correction = ''; … … 126 126 trashCommentInOwner($blogid, $comment['id']); 127 127 } 128 mysql_free_result($r2);128 POD::free($r2); 129 129 } 130 130 } 131 mysql_free_result($result);131 POD::free($result); 132 132 } 133 133 134 134 if ($result = POD::query("SELECT id, url, site, subject, excerpt FROM {$database['prefix']}Trackbacks WHERE blogid = $blogid")) { 135 while ($trackback = mysql_fetch_assoc($result)) {135 while ($trackback = POD::fetch($result)) { 136 136 setProgress($item++ / $items * 100, _t('걸린 글 데이터를 교정하고 있습니다.')); 137 137 $correction = ''; … … 149 149 } 150 150 } 151 mysql_free_result($result);151 POD::free($result); 152 152 } 153 153
