*** empty log message ***

svn path=/trunk/boinc/; revision=1992
This commit is contained in:
Karl Chen 2003-08-05 20:34:50 +00:00
parent 833a9d4616
commit b433a63013
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ class SqlQueryString {
$count_query = "select count(*) as cnt from $this->table $this->query";
$result = mysql_query($count_query);
$res = mysql_fetch_object($result);
mysql_free_result($result);
return $res->cnt;
}