summaryrefslogtreecommitdiffstats
path: root/class/CommonTable.php
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2010-11-01 08:46:05 +0100
committerRemi Collet <fedora@famillecollet.com>2010-11-01 08:46:05 +0100
commitc28b13eaeca04574994d5a7c2320bbce4c63450f (patch)
treebabb19b528e46b85bbbdc59a78313d422f5bcd5a /class/CommonTable.php
parent1421a2207c0130030233e901d6f5055f54417e68 (diff)
add new TableRpmRepo->getMaxStamp() method and use it
Diffstat (limited to 'class/CommonTable.php')
-rw-r--r--class/CommonTable.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/class/CommonTable.php b/class/CommonTable.php
index ba3f7ad..0aeeb29 100644
--- a/class/CommonTable.php
+++ b/class/CommonTable.php
@@ -262,6 +262,10 @@ abstract class CommonTable
**/
public function request ($crit='')
{
+ if (is_string($crit) && strpos($crit,' ')) {
+ // $crit is a full SQL command
+ return new TableIterator ($this->db, $crit);
+ }
return new TableIterator ($this->db, $this->table, $crit);
}