From: Craig Andrews <candrews@integralblue.com>
Date: Thu, 6 Aug 2009 00:28:46 +0000 (-0400)
Subject: Handle relative and absolute url parameters to script() and cssLink()
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2eaf738bf708ec4f49bd7bbc8ca67d6fad33317a;p=quix0rs-gnu-social.git

Handle relative and absolute url parameters to script() and cssLink()
---

diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index 0b4c1405a8..9d32446256 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -349,29 +349,38 @@ class HTMLOutputter extends XMLOutputter
      */
     function script($src, $type='text/javascript')
     {
+        $url = parse_url($src);
+        if(! ($url->scheme || $url->host || $url->query || $url->fragment))
+        {
+            $src = common_path($src) . '?version=' . LACONICA_VERSION;
+        }
         $this->element('script', array('type' => $type,
-                                               'src' => common_path($src) . '?version=' . LACONICA_VERSION),
+                                               'src' => $src),
                                ' ');
     }
 
     /**
      * output a css link
      *
-     * @param string $relative     relative path within the theme directory
+     * @param string $src     relative path within the theme directory, or an absolute path
      * @param string $theme        'theme' that contains the stylesheet
      * @param string media         'media' attribute of the tag
      *
      * @return void
      */
-    function cssLink($relative,$theme,$media)
+    function cssLink($src,$theme,$media)
     {
         if (!$theme) {
             $theme = common_config('site', 'theme');
         }
-
+        $url = parse_url($src);
+        if(! ($url->scheme || $url->host || $url->query || $url->fragment))
+        {
+            $src = theme_path($src) . '?version=' . LACONICA_VERSION;
+        }
         $this->element('link', array('rel' => 'stylesheet',
                                 'type' => 'text/css',
-                                'href' => theme_path($relative, $theme) . '?version=' . LACONICA_VERSION,
+                                'href' => $src,
                                 'media' => $media));
     }