瀏覽代碼

! Oops, that shouldn't have been Wedge style code.

Signed-off-by: Peter Spicer <[email protected]>
Peter Spicer 10 年之前
父節點
當前提交
aec98628cb
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      SSI.php

+ 2 - 2
SSI.php

@@ -471,9 +471,9 @@ function ssi_recentTopics($num_recent = 8, $exclude_boards = null, $include_boar
 		)
 	);
 	$topics = array();
-	while ($row = wesql::fetch_assoc($request))
+	while ($row = $smcFunc['db_fetch_assoc']($request))
 		$topics[$row['id_topic']] = $row;
-	wesql::free_result($request);
+	$smcFunc['db_free_result']($request);
 
 	// Did we find anything? If not, bail.
 	if (empty($topics))