Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
Corrected relative path of rotating images gallery when no custom path
authorpreecej <preecej@localhost>
Fri, 3 Feb 2012 23:47:46 +0000 (23:47 +0000)
committerpreecej <preecej@localhost>
Fri, 3 Feb 2012 23:47:46 +0000 (23:47 +0000)
provided

svn path=/; revision=294

lab_site_themes/osu_drupal_1_11/template.theme-registry.inc

index ee99521fa8fbf6bee03ff0dc564ee8b3a43612c8..3d0aa2213a1935c299ef689ee7e7e9dd3a6d7409 100644 (file)
@@ -32,9 +32,20 @@ function osu_drupal_1_11_get_rotating_header_path() {
        } else {
                $osu_rotating_header_path = array(
                        'abs' => realpath('.').'/'.$theme_path.'/images/rotating_headers/',
-                       'rel' => base_path().'/'.$theme_path.'/images/rotating_headers/' // JP - bug fix
+                       //'rel' => base_path().'/'.$theme_path.'/images/rotating_headers/' // JP - bug fix
+                       'rel' => base_path().''.$theme_path.'/images/rotating_headers/'
                );
        }
+/*
+       // JP - test block
+       echo "<font color=green>";
+       echo "abs path: $osu_rotating_header_path[abs]<br>";
+       echo "rel path: $osu_rotating_header_path[rel]<br>";
+       echo base_path() . "<br>";
+       echo "$use_custom_path<br>";
+       echo "</font>";
+       // JP - end test block
+*/
        return $osu_rotating_header_path;
 }