From: Michael M Slusarz Date: Fri, 21 Jan 2011 18:50:04 +0000 (-0700) Subject: phpdoc/style X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=9adc0bac8fadfd6ce4d84bb06441244b2b3e3538;p=horde.git phpdoc/style --- diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index 5012fd4ae..c64c64951 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -1928,7 +1928,7 @@ HTML; * the default 'public'. * * - * @return string The URL to the cache page. + * @return Horde_Url The URL to the cache page. */ static public function getCacheUrl($type, $params = array()) { @@ -1947,7 +1947,7 @@ HTML; * @param array $options Additional options: *
      * 'height' - (integer) The height of the popup window.
-     *            DEFAULT: 650 px
+     *            DEFAULT: 650px
      * 'menu' - (boolean) Show the browser menu in the popup window?
      *          DEFAULT: false
      * 'onload' - (string) A JS function to call after the popup window is
diff --git a/framework/Core/lib/Horde/Themes/Css.php b/framework/Core/lib/Horde/Themes/Css.php
index 86759360c..b2e03c504 100644
--- a/framework/Core/lib/Horde/Themes/Css.php
+++ b/framework/Core/lib/Horde/Themes/Css.php
@@ -127,8 +127,7 @@ class Horde_Themes_Css
             if ($conf['cachecssparams']['compress'] == 'php') {
                 try {
                     $out = $injector->getInstance('Horde_Core_Factory_TextFilter')->filter($out, 'csstidy');
-                } catch (Horde_Exception $e) {
-                }
+                } catch (Horde_Exception $e) {}
             }
 
             switch ($cache_type) {
diff --git a/horde/services/cache.php b/horde/services/cache.php
index 2412f2222..17da7d28a 100644
--- a/horde/services/cache.php
+++ b/horde/services/cache.php
@@ -40,7 +40,11 @@ if (empty($args['nocache'])) {
     $session_cache_limiter = 'nocache';
 }
 
-Horde_Registry::appInit('horde', array('authentication' => 'none', 'session_cache_limiter' => $session_cache_limiter, 'session_control' => 'readonly'));
+Horde_Registry::appInit('horde', array(
+    'authentication' => 'none',
+    'session_cache_limiter' => $session_cache_limiter,
+    'session_control' => 'readonly'
+));
 
 switch ($type) {
 case 'app':