示例#1
0
文件: Ratings.php 项目: norv/EosAlpha
function FixLikes()
{
    global $sourcedir;
    require_once $sourcedir . '/lib/Subs-Ratings.php';
    $result = smf_db_query('SELECT id_msg FROM {db_prefix}messages');
    while ($row = mysql_fetch_assoc($result)) {
        Ratings::updateForContent($row['id_msg']);
    }
    mysql_free_result($result);
}