svn: /pear2/BugManager/trunk/www/pearworm/source/ getTableCount.php
[email protected] (Greg Beaver) Thu, 09 Sep 2010 16:44:36 +0000
| Newsgroups | php.pear.cvs,php.pear.core |
|---|---|
| Message-ID | <[email protected]> |
cellog Thu, 09 Sep 2010 16:44:36 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=303232
Log:
fix table count
Changed paths:
U pear2/BugManager/trunk/www/pearworm/source/getTableCount.php
Modified: pear2/BugManager/trunk/www/pearworm/source/getTableCount.php
===================================================================
--- pear2/BugManager/trunk/www/pearworm/source/getTableCount.php 2010-09-09 16:34:38 UTC (rev 303231)
+++ pear2/BugManager/trunk/www/pearworm/source/getTableCount.php 2010-09-09 16:44:36 UTC (rev 303232)
@@ -16,5 +16,5 @@
$val = $issue->search($site->defaultSearchEscaper($issue), $_GET, 0,
1, 'id', true);
header('Content-Type: text/plain');
-echo $val->actual_count() . "";
+echo count($val) . "";
?>
\ No newline at end of file