Allow custom URLs for stylesheet/javascript/banner
This commit is contained in:
@@ -419,4 +419,9 @@
|
||||
// 'status' => 'http://status.example.org/'
|
||||
//);
|
||||
|
||||
// Set custom locations for stylesheets, scripts and maybe a banner.
|
||||
// This can be good for load balancing across multiple servers or hostnames.
|
||||
// $config['url_stylesheet'] = 'http://static.example.org/style.css';
|
||||
// $config['url_javascript'] = 'http://static.example.org/script.js';
|
||||
// $config['url_banner'] = '/banner.php';
|
||||
?>
|
@@ -61,7 +61,7 @@
|
||||
|
||||
if(function_exists('sql_close')) sql_close();
|
||||
die(Element('page.html', Array(
|
||||
'index'=>$config['root'],
|
||||
'config'=>$config,
|
||||
'title'=>'Error',
|
||||
'subtitle'=>'An error has occured.',
|
||||
'body'=>"<center>" .
|
||||
@@ -82,7 +82,7 @@
|
||||
'index'=>$config['root'],
|
||||
'title'=>'Login',
|
||||
'body'=>Element('login.html', Array(
|
||||
'index'=>$config['root'],
|
||||
'config'=>$config,
|
||||
'error'=>$error,
|
||||
'username'=>$username,
|
||||
'redirect'=>$redirect
|
||||
|
@@ -12,6 +12,11 @@
|
||||
require $board['dir'] . '/config.php';
|
||||
}
|
||||
|
||||
if(!isset($config['url_stylesheet']))
|
||||
$config['url_stylesheet'] = $config['root'] . 'style.css';
|
||||
if(!isset($config['url_javascript']))
|
||||
$config['url_javascript'] = $config['root'] . 'script.js';
|
||||
|
||||
if(!isset($config['post_url']))
|
||||
$config['post_url'] = $config['root'] . $config['file_post'];
|
||||
|
||||
@@ -56,7 +61,6 @@
|
||||
else
|
||||
$config['uri_img'] = sprintf($config['uri_img'], $board['dir']);
|
||||
|
||||
|
||||
if($config['root_file']) {
|
||||
chdir($config['root_file']);
|
||||
}
|
||||
@@ -256,7 +260,7 @@
|
||||
|
||||
// Show banned page and exit
|
||||
die(Element('page.html', Array(
|
||||
'index' => $config['root'],
|
||||
'config' => $config,
|
||||
'title' => 'Banned',
|
||||
'subtitle' => 'You are banned!',
|
||||
'body' => $body
|
||||
@@ -503,11 +507,10 @@
|
||||
}
|
||||
|
||||
return Array(
|
||||
'button'=>$config['button_newtopic'],
|
||||
'board'=>$board,
|
||||
'body'=>$body,
|
||||
'post_url' => $config['post_url'],
|
||||
'index' => $config['root'],
|
||||
'config' => $config,
|
||||
'boardlist' => createBoardlist($mod)
|
||||
);
|
||||
}
|
||||
@@ -1008,11 +1011,9 @@
|
||||
if(!isset($thread)) error($config['error']['nonexistant']);
|
||||
|
||||
$body = Element('thread.html', Array(
|
||||
'button'=>$config['button_reply'],
|
||||
'board'=>$board,
|
||||
'body'=>$thread->build(),
|
||||
'post_url' => $config['post_url'],
|
||||
'index' => $config['root'],
|
||||
'config' => $config,
|
||||
'id' => $id,
|
||||
'mod' => $mod,
|
||||
'boardlist' => createBoardlist($mod),
|
||||
|
Reference in New Issue
Block a user