Index: src/template.php
===================================================================
--- src/template.php	(revision 5815)
+++ src/template.php	(working copy)
@@ -272,8 +272,12 @@
             $this->properties["stream"] = $location->getPath();
         }
 
-        if ( strlen( $this->properties["stream"] ) > 0 && $this->properties["stream"][0] != "/" ) // Is it a relative path?
-        {
+        // Is it a relative path?
+        $path = $this->properties["stream"];
+        if ( $path[0] != "/" 
+           && $path[0] != "\\" 
+           && !( strlen( $path ) >= 3 && ctype_alpha( $path[0] ) && $path[1] == ":" && ($path[2] == "\\" || $path[2] = "/") )
+        ) { 
             $this->properties["stream"] = $config->templatePath . DIRECTORY_SEPARATOR . $this->properties["stream"];
         }
 
