[phpwebapp-commits] CVS: web_app/database class.PagedRS.php,1.7,1.8
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2003-09-15 09:37:58
|
Update of /cvsroot/phpwebapp/web_app/database In directory sc8-pr-cvs1:/tmp/cvs-serv10129/database Modified Files: class.PagedRS.php Log Message: Index: class.PagedRS.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/database/class.PagedRS.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** class.PagedRS.php 8 Sep 2003 13:18:24 -0000 1.7 --- class.PagedRS.php 15 Sep 2003 09:37:53 -0000 1.8 *************** *** 165,170 **** $query = WebApp::replaceVars($this->query); $query = $this->get_count_query($query); ! $rs = new Recordset; ! $rs->Open($query); $nrRecs = $rs->Field("COUNT_OF_RECS"); --- 165,170 ---- $query = WebApp::replaceVars($this->query); $query = $this->get_count_query($query); ! $rs = new Recordset($this->ID."_countQuery", $query); ! $rs->Open(); $nrRecs = $rs->Field("COUNT_OF_RECS"); |