10 lines
131 B
PHP
10 lines
131 B
PHP
<?php
|
|
|
|
class ErrorFrame extends Frame
|
|
{
|
|
protected $template = 'window/error.tpl';
|
|
}
|
|
|
|
$error = new ErrorFrame();
|
|
$error->run();
|