Fixed a bug in campcaster-import: "require_once" statements were out of
order. Fixed bug in statusbar.tpl - syntax error.
This commit is contained in:
parent
c8df3578ca
commit
192bc86115
|
@ -9,7 +9,7 @@
|
|||
</td>
|
||||
|
||||
<td>
|
||||
{assign var="_now value=$SCHEDULER->getSchedulerTime(true)}
|
||||
{assign var="_now" value=$SCHEDULER->getSchedulerTime()}
|
||||
{if !$_now}
|
||||
{assign var="_now" value=$smarty.now}
|
||||
{/if}
|
||||
|
|
|
@ -12,10 +12,10 @@ set_time_limit(0);
|
|||
error_reporting(E_ALL);
|
||||
set_error_handler("camp_import_error_handler", E_ALL & !E_NOTICE);
|
||||
|
||||
require_once('DB.php');
|
||||
require_once('Console/Getopt.php');
|
||||
require_once(dirname(__FILE__)."/../conf.php");
|
||||
require_once(dirname(__FILE__)."/../backend/GreenBox.php");
|
||||
require_once('DB.php');
|
||||
require_once('Console/Getopt.php');
|
||||
|
||||
function camp_import_error_handler()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue