]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/siteadminpanel.php
Added locales_path to site admin panel
[quix0rs-gnu-social.git] / actions / siteadminpanel.php
index b48be19a07c15bee6fb5128d55544926a11cff2a..ce6d3f544671be4799975d77fb8cee2f25bbd27c 100644 (file)
@@ -93,7 +93,7 @@ class SiteadminpanelAction extends AdminPanelAction
         static $settings = array('site' => array('name', 'broughtby', 'broughtbyurl',
                                                  'email', 'timezone', 'language',
                                                  'ssl', 'sslserver', 'site', 'path',
-                                                 'textlimit', 'dupelimit'),
+                                                 'textlimit', 'dupelimit', 'locale_path'),
                                  'snapshot' => array('run', 'reporturl', 'frequency'));
 
         static $booleans = array('site' => array('private', 'inviteonly', 'closed', 'fancy'));
@@ -216,6 +216,14 @@ class SiteadminpanelAction extends AdminPanelAction
             $this->clientError(_("Dupe limit must 1 or more seconds."));
         }
 
+        // Validate locales path
+
+        // XXX: What else do we need to validate for lacales path here? --Z
+
+        if (!empty($values['site']['locale_path']) && !is_readable($values['site']['locale_path'])) {
+            $this->clientError(sprintf(_("Locales directory not readable: %s"), $values['site']['locale_path']));
+        }
+
     }
 }