aboutsummaryrefslogtreecommitdiffstats
path: root/functions/template.php
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2006-08-14 05:57:32 +0000
committerJim Hu <jimhu@users.sourceforge.net>2006-08-14 05:57:32 +0000
commitf4e6d9a4ccc056646f7fb69aa7ac2ba601610449 (patch)
tree3f36125295d26c6ca8cb0969c78146745ca6967a /functions/template.php
parent2fc4352cc2e9e439993efbc6f3c2a851b181a8ba (diff)
downloadphpicalendar-f4e6d9a4ccc056646f7fb69aa7ac2ba601610449.tar.gz
phpicalendar-f4e6d9a4ccc056646f7fb69aa7ac2ba601610449.tar.bz2
phpicalendar-f4e6d9a4ccc056646f7fb69aa7ac2ba601610449.zip
fix missing quote mark
Diffstat (limited to 'functions/template.php')
-rw-r--r--functions/template.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/functions/template.php b/functions/template.php
index 95f4859..30c866c 100644
--- a/functions/template.php
+++ b/functions/template.php
@@ -1101,15 +1101,15 @@ class Page {
$i=0;
foreach ($match[1] as $key => $val) {
if ($match[1][$i] == 'SMALL') {
- $template_file = $this->parse('templates/'.$template.'/month_small.tpl');
+ $template_file = $this->parse(BASE.'templates/'.$template.'/month_small.tpl');
$type = 'small';
$offset = $match[2][$i].$match[3][$i];
} elseif ($match[1][$i] == 'MEDIUM') {
- $template_file = $this->parse('templates/'.$template.'/month_medium.tpl');
+ $template_file = $this->parse(BASE.'templates/'.$template.'/month_medium.tpl');
$type = 'medium';
$offset = $match[3][$i];
} else {
- $template_file = $this->parse('templates/'.$template.'/month_large.tpl');
+ $template_file = $this->parse(BASE.'templates/'.$template.'/month_large.tpl');
$type = 'large';
$offset = $match[2][$i].$match[3][$i];
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy