From b0dec8db8356751d248cb0ce88d975521bfdc4a5 Mon Sep 17 00:00:00 2001 From: tbrehm Date: Thu, 16 Sep 2010 11:38:04 +0000 Subject: [PATCH] Fixed: FS#1279 - DNS zone with more than 1 page and DNS zone with only one page. --- interface/web/dns/dns_soa_edit.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/interface/web/dns/dns_soa_edit.php b/interface/web/dns/dns_soa_edit.php index 646dae054..e83602561 100644 --- a/interface/web/dns/dns_soa_edit.php +++ b/interface/web/dns/dns_soa_edit.php @@ -50,6 +50,16 @@ $app->load('tform_actions'); class page_action extends tform_actions { + function onShow() { + global $app; + //* Reset the page number of the list form for the dns + //* records to 0 if we are on the first tab of the soa form. + if($app->tform->getNextTab() == 'dns_soa') { + $_SESSION['search']['dns_a']['page'] = 0; + } + parent::onShow(); + } + function onShowNew() { global $app, $conf; -- GitLab