summaryrefslogtreecommitdiffstats
path: root/web/template/account_search_results.php
diff options
context:
space:
mode:
Diffstat (limited to 'web/template/account_search_results.php')
-rw-r--r--web/template/account_search_results.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/template/account_search_results.php b/web/template/account_search_results.php
index 88d6bb6..f2ed62e 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: