Merge from CVS - need full URLs here in case this is being rendered as
authorMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 13 Jan 2009 22:49:23 +0000 (17:49 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Tue, 13 Jan 2009 22:49:23 +0000 (17:49 -0500)
embedded.

kronolith/lib/Block/monthlist.php
kronolith/lib/Block/prevmonthlist.php
kronolith/lib/Block/summary.php

index 0aae40f..fc330b7 100644 (file)
@@ -86,7 +86,7 @@ class Horde_Block_Kronolith_monthlist extends Horde_Block {
             return '<em>' . $all_events->getMessage() . '</em>';
         }
 
-        $html = '<link href="' . Horde::applicationUrl('themes/categoryCSS.php') . '" rel="stylesheet" type="text/css" />';
+        $html = '<link href="' . Horde::applicationUrl('themes/categoryCSS.php', true) . '" rel="stylesheet" type="text/css" />';
 
         /* How many days do we need to check. */
         $days = Date_Calc::dateDiff($startDate->mday, $startDate->month, $startDate->year,
index 05d966c..8144ba1 100644 (file)
@@ -81,7 +81,7 @@ class Horde_Block_Kronolith_prevmonthlist extends Horde_Block {
             return '<em>' . $all_events->getMessage() . '</em>';
         }
 
-        $html = '<link href="' . Horde::applicationUrl('themes/categoryCSS.php') . '" rel="stylesheet" type="text/css" />';
+        $html = '<link href="' . Horde::applicationUrl('themes/categoryCSS.php', true) . '" rel="stylesheet" type="text/css" />';
 
         /* How many days do we need to check. */
         $days = Date_Calc::dateDiff($startDate->mday, $startDate->month, $startDate->year,
index 8213c45..afb566b 100644 (file)
@@ -193,7 +193,7 @@ class Horde_Block_Kronolith_summary extends Horde_Block {
             return '<em>' . _("No events to display") . '</em>';
         }
 
-        return '<link href="' . Horde::applicationUrl('themes/categoryCSS.php') . '" rel="stylesheet" type="text/css" /><table cellspacing="0" width="100%">' . $html . '</table>';
+        return '<link href="' . Horde::applicationUrl('themes/categoryCSS.php', true) . '" rel="stylesheet" type="text/css" /><table cellspacing="0" width="100%">' . $html . '</table>';
     }
 
 }