application/modules/cmsemail/admin.php 1 location
|
@@ 84-88 (lines=5) @@
|
81 |
|
$this->lib_admin->log(lang('E-mail template created', 'cmsemail') . ' - ' . $this->input->post('mail_name')); |
82 |
|
showMessage(lang('Template created', 'cmsemail')); |
83 |
|
|
84 |
|
if ($this->input->post('action') == 'tomain') { |
85 |
|
pjax('/admin/components/cp/cmsemail/index'); |
86 |
|
} else { |
87 |
|
pjax('/admin/components/cp/cmsemail/edit/' . $id . '#settings'); |
88 |
|
} |
89 |
|
} else { |
90 |
|
showMessage($this->email->errors, '', 'r'); |
91 |
|
} |
application/modules/menu/admin.php 1 location
|
@@ 919-923 (lines=5) @@
|
916 |
|
|
917 |
|
$this->lib_admin->log(lang('Menu was created', 'menu') . '. Id: ' . $menu_id); |
918 |
|
showMessage(lang('Menu created', 'menu')); |
919 |
|
if ($this->input->post('action') == 'tomain') { |
920 |
|
pjax('/admin/components/cp/menu'); |
921 |
|
} else { |
922 |
|
pjax('/admin/components/cp/menu/edit_menu/' . $menu_id); |
923 |
|
} |
924 |
|
} |
925 |
|
} |
926 |
|
|