diff options
Diffstat (limited to 'src/views/Template.class.php')
-rw-r--r-- | src/views/Template.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/Template.class.php b/src/views/Template.class.php index 187e65b..540e4fc 100644 --- a/src/views/Template.class.php +++ b/src/views/Template.class.php @@ -82,14 +82,14 @@ class Template { public function link($target, $text, $return=false) { $ret = $this->ret; - $this->ret = $return; + $this->ret |= $return; $str = $this->tag('a', array('href'=>$target), $text); $this->ret = $ret; if ($this->ret||$return) return $str; echo $str; } public function url($page) { - return $this->base.rawurlencode($page); + return $this->base.$page; } public function row($cells) { |