Browse Source

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

Signed-off-by: Peter Spicer <[email protected]>
Peter Spicer 10 years ago
parent
commit
aec98628cb
1 changed files with 2 additions and 2 deletions
  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))