From: Aaron Trevena Date: Mon, 6 Nov 2006 13:37:28 +0000 (+0000) Subject: changed template path ordering a bit more in TT X-Git-Tag: 2.12~24 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=maypole.git;a=commitdiff_plain;h=55afe5b445e78a93fd7e501c49b53b654722c7c3 changed template path ordering a bit more in TT git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@550 48953598-375a-da11-a14b-00016c27c3ee --- diff --git a/lib/Maypole/View/Base.pm b/lib/Maypole/View/Base.pm index 5ae1bae..0e9378f 100644 --- a/lib/Maypole/View/Base.pm +++ b/lib/Maypole/View/Base.pm @@ -23,8 +23,8 @@ sub paths { && File::Spec->catdir( $path, $r->model_class->table ) ) ); - push(@output, $path); push(@output, File::Spec->catdir( $path, "custom" )); + push(@output, $path); push(@output, File::Spec->catdir( $path, "factory" )); }