Show
Ignore:
Timestamp:
05/23/08 21:16:38 (6 months ago)
Author:
inureyes
Message:

#711

  • stat 관련 쿼리 및 남은 mysql 종속성의 encapsulation.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/blog/sync.php

    r5557 r6000  
    3535            WHERE id = tag AND blogid = ".getBlogId()." AND entry = {$entry['id']}  
    3636            ORDER BY name"); 
    37     while(list($tag) = mysql_fetch_row($result)) 
     37    while(list($tag) = POD::fetch($result,'row')) 
    3838        echo '<tag>', htmlspecialchars($tag), '</tag>', "\r\n"; 
    39     mysql_free_result($result); 
     39    POD::free($result); 
    4040    echo '<location>', htmlspecialchars($entry['location']), '</location>', "\r\n"; 
    4141    echo '<comments>', $entry['comments'], '</comments>', "\r\n";