| | |
| | | 2 = ERROR
|
| | | */
|
| | |
|
| | | function error($msg, $priority = 2) {
|
| | | function error($msg, $next_link = '', $stop = true, $priority = 1) {
|
| | | //$this->uses("error");
|
| | | //$this->error->message($msg, $priority);
|
| | | echo $msg;
|
| | | if($priority == 2) exit;
|
| | | if($next_link != "") echo "<a href='$next_link'>Next</a>";
|
| | | if($stop == true) die();
|
| | | }
|
| | |
|
| | | function lng($text)
|
| | |
| | | }
|
| | |
|
| | | function tpl_defaults() {
|
| | | global $conf;
|
| | |
|
| | | $this->tpl->setVar('theme',$_SESSION["s"]["theme"]);
|
| | | $this->tpl->setVar('phpsessid',session_id());
|
| | | $this->tpl->setVar('html_content_encoding',$conf["html_content_encoding"]);
|
| | |
|
| | | }
|
| | |
|