From 9e32051d7d5e49d8d64c1a09843985b44d1588ad Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 14 Dec 2011 14:41:32 +0800 Subject: [PATCH] I18n.php --- I18n.php | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/I18n.php b/I18n.php index faa6fef1..7ec41ccb 100644 --- a/I18n.php +++ b/I18n.php @@ -109,30 +109,23 @@ class Pman_Core_I18N extends Pman case 'Lang': $i->ltype = 'l'; $i->applyFilters($_REQUEST, $this->authUser, $this); - $i->toTransList('l', $lbits[0]); - - $ret = $this->getList('l', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']); + $this->jdata($i->toTransList('l', $lbits[0])); break; case 'Country': + $i->ltype = 'l'; + $i->applyFilters($_REQUEST, $this->authUser, $this); + $this->jdata($i->toTransList('l', $lbits[0])); + $ret = $this->getList('c', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']); break; case 'Currency': - $ret = $this->getList('m', $lbits[0],empty($_REQUEST['filter']) ? false : $_REQUEST['filter']); - break; - // part of parent!!!! - /* - case 'BuildDB': - // by admin only?!? - //DB_DataObject::debugLevel(1); - $this->buildDb('l'); - $this->buildDb('c'); - $this->buildDb('m'); - die("DONE!"); + $i->ltype = 'l'; + $i->applyFilters($_REQUEST, $this->authUser, $this); + $this->jdata($i->toTransList('l', $lbits[0])); break; - */ - default: + } -- 2.39.2