X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FI18n.php;h=3f52fb5a58c962a6ef643df2742cbfffe9b7fd79;hb=cd94d312a825c83ccc154c4b0c6bee4bb1d8c34c;hp=366143306879b3c34b7a27daa116048cded4d11b;hpb=750b54e82dd8dd021d19a8e5a3ea04e788689fd8;p=Pman.Core diff --git a/DataObjects/I18n.php b/DataObjects/I18n.php index 36614330..3f52fb5a 100644 --- a/DataObjects/I18n.php +++ b/DataObjects/I18n.php @@ -128,7 +128,6 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject $this->selectAdd(" i18n_translate(ltype, lkey, 'en') as lval_en - "); } @@ -170,7 +169,19 @@ class Pman_Core_DataObjects_I18n extends DB_DataObject geoip_city.country = i18n.lkey ) AS no_of_city "); - + } + + if(!empty($q['_hide_unused'])) { + $this->whereAdd(" + ( + SELECT + COUNT(geoip_division.id) + FROM + geoip_division + WHERE + geoip_division.country = i18n.lkey + ) > 0 + "); } }