Skip to content

Commit

Permalink
template module was added
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdullah Eid committed Dec 9, 2012
1 parent 06e8dac commit 322561f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions modules/template/umodule_template.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class umodule_template extends UQLModule implements IUQLModule {

public function init() {

$this->left_delimiter = '#';
$this->left_delimiter = '#';
$this->right_delimiter = '#';
$this->template_source = '';
$this->template_result = '';
Expand Down Expand Up @@ -57,7 +57,12 @@ public function out(&$path) {
}

public function shutdown() {


$this->left_delimiter = null;
$this->right_delimiter = null;
$this->template_source = null;
$this->template_result = null;

}
}

Expand Down

0 comments on commit 322561f

Please sign in to comment.