소스 검색

! 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))