Enabled Search, Improved Navbar, Fixed Application Authorisation and some other minor fixes
This commit is contained in:
@@ -114,7 +114,7 @@ class Email_Template {
|
||||
|
||||
foreach ($this->components as $component) {
|
||||
if ($this->etto->loaded()) {
|
||||
$s = $this->etto->resolve($this->email_data['variables'],$component);
|
||||
$s = $this->etto->rresolve($this->email_data['variables'],$component);
|
||||
|
||||
switch ($component) {
|
||||
case 'message_html':
|
||||
|
@@ -32,7 +32,7 @@ class Model_Email_Log extends ORM_OSB {
|
||||
if (! $this->data OR ! ($this->email_template_translate->variables($column)))
|
||||
return $this->email_template_translate->display($column);
|
||||
else
|
||||
return $this->email_template_translate->resolve($this->data,$column);
|
||||
return $this->email_template_translate->rresolve($this->data,$column);
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
@@ -28,7 +28,7 @@ class Model_Email_Template_Translate extends ORM_OSB {
|
||||
return $results;
|
||||
}
|
||||
|
||||
public function resolve($data,$column) {
|
||||
public function rresolve($data,$column) {
|
||||
$output = $this->display($column);
|
||||
|
||||
foreach ($this->variables($column) as $k => $v)
|
||||
|
Reference in New Issue
Block a user