Author: struberg
Date: Sun Jun 9 09:53:52 2013
New Revision: 1491168
URL: http://svn.apache.org/r1491168
Log:
base path should be empty
otherwise we gather ////// etc as paths over the time
Modified:
deltaspike/site/trunk/lib/view.pm
Modified: deltaspike/site/trunk/lib/view.pm
URL:
http://svn.apache.org/viewvc/deltaspike/site/trunk/lib/view.pm?rev=1491168&r1=1491167&r2=1491168&view=diff
==============================================================================
--- deltaspike/site/trunk/lib/view.pm (original)
+++ deltaspike/site/trunk/lib/view.pm Sun Jun 9 09:53:52 2013
@@ -54,7 +54,7 @@ sub basic {
read_text_file($filepath, \%args);
$args{path} =~ s/\.mdtext$/\.html/;
- $args{base} = _base($args{path}) . "/";
+ $args{base} = _base($args{path}) . "";
$args{breadcrumbs} = _breadcrumbs($args{path}, $args{base});
my $template_path = "templates/$args{template}";