diff options
| author | Remi Collet <fedora@famillecollet.com> | 2010-11-01 08:46:05 +0100 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2010-11-01 08:46:05 +0100 | 
| commit | c28b13eaeca04574994d5a7c2320bbce4c63450f (patch) | |
| tree | babb19b528e46b85bbbdc59a78313d422f5bcd5a /all.php | |
| parent | 1421a2207c0130030233e901d6f5055f54417e68 (diff) | |
add new TableRpmRepo->getMaxStamp() method and use it
Diffstat (limited to 'all.php')
| -rw-r--r-- | all.php | 7 | 
1 files changed, 2 insertions, 5 deletions
@@ -211,11 +211,8 @@ try {          $smarty->assign('owners', $owners);      } -    $sql='SELECT MAX(stamp) AS stamp FROM repo'; -    $res=$db->query($sql); -    if ($res && $row=$res->fetchObject()) { -        $smarty->assign('repositories_update', date("r", $row->stamp)); -    } +    $rpmrepo  = new TableRpmRepo($db); +    $smarty->assign('repositories_update', date("r", $rpmrepo->getMaxStamp()));      $smarty->assign('packages', report($db));  } catch(PDOException $e) {  | 
