--- trunk/admin/res_results_brief.phtml 2004/01/27 20:34:29 16 +++ trunk/admin/res_results_brief.phtml 2004/03/04 22:43:50 42 @@ -233,7 +233,7 @@ //printf("sql was: %s
", $sql); - if ( !$rs = mysql_query ( $sql, $con ) ) { + if ( !$rs = xx_query ( $sql, $con ) ) { sql_err ( $sql ) And bailout(); } @@ -259,7 +259,7 @@ $rowcount = 0; // Cycle through the result set of unique reference id's. - while ( $row = mysql_fetch_array ( $rs ) ) { + while ( $row = xx_fetch_array ( $rs ) ) { $resource_id = $row["resource_id"]; $title = Trim($row["title"]); $publisher = Trim($row["publisher"]); @@ -315,8 +315,8 @@ // Search statistics printf("\n"); $records = "record"; - printf("
Returned %d ", mysql_num_rows($rs)); - if (mysql_num_rows($rs) != 1) $records .= "s"; + printf("
Returned %d ", xx_num_rows($rs)); + if (xx_num_rows($rs) != 1) $records .= "s"; printf($records); printf(".");