phpdoc/style
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 21 Jan 2011 18:50:04 +0000 (11:50 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 21 Jan 2011 19:48:24 +0000 (12:48 -0700)
framework/Core/lib/Horde.php
framework/Core/lib/Horde/Themes/Css.php
horde/services/cache.php

index 5012fd4..c64c649 100644 (file)
@@ -1928,7 +1928,7 @@ HTML;
      *             the default 'public'.
      * </pre>
      *
-     * @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:
      * <pre>
      * '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
index 8675936..b2e03c5 100644 (file)
@@ -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) {
index 2412f22..17da7d2 100644 (file)
@@ -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':