diff options
Diffstat (limited to 'web/template/account_search_results.php')
-rw-r--r-- | web/template/account_search_results.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/web/template/account_search_results.php b/web/template/account_search_results.php index 88d6bb68..f2ed62e1 100644 --- a/web/template/account_search_results.php +++ b/web/template/account_search_results.php @@ -2,7 +2,6 @@ if (!$result): print __("No results matched your search criteria."); else: - $num_rows = mysql_num_rows($result); if ($num_rows): ?> <table class="results"> @@ -20,7 +19,7 @@ else: </thead> <?php $i = 0; - while ($row = mysql_fetch_assoc($result)): + while (list($indx, $row) = each($userinfo)): if ($i % 2): $c = "even"; else: |