diff options
author | Dries Buytaert <dries@buytaert.net> | 2000-11-13 08:17:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2000-11-13 08:17:45 +0000 |
commit | 9559f61fcab156477dd45f4926664b74c3c2d65d (patch) | |
tree | 4c0fb62ac3dca254a2c22023e81d50eb51e579a1 /includes/admin.inc | |
parent | d4fc1dfa888305c57f52730ba9dcec800896c004 (diff) | |
download | brdo-9559f61fcab156477dd45f4926664b74c3c2d65d.tar.gz brdo-9559f61fcab156477dd45f4926664b74c3c2d65d.tar.bz2 |
Another batch with a lot of internal updates, yet no visual changes to the
site:
- watchdog (rewrite):
+ the collected information provides more details and insights
for post-mortem research
+ input limitation
- database abstraction layer:
+ mysql errors are now verbose and is no longer displayed in a
browser - fixes a possible security risk
- admin.php:
+ updated watchdog page
+ fixed security flaw
- diary.php:
+ fixed nl2br problem
- themes:
+ fixed comment bug in all 3 themes.
- misc:
+ renamed some global variables for sake of consistency:
$sitename --> $site_name
$siteurl --> $site_url
+ added input check where (a) exploitable and (b) possible
+ added input size check
+ various small improvements
+ fixed various typoes
... and much, much more in fact.
Diffstat (limited to 'includes/admin.inc')
-rw-r--r-- | includes/admin.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/admin.inc b/includes/admin.inc index 08c8642c4..2d13c7c17 100644 --- a/includes/admin.inc +++ b/includes/admin.inc @@ -8,12 +8,12 @@ function admin_icon($name) { } function admin_header() { - global $sitename, $section; + global $site_name, $section; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> - <HEAD><TITLE><? echo $sitename; ?> administration center</TITLE></HEAD> + <HEAD><TITLE><? echo $site_name; ?> administration center</TITLE></HEAD> <STYLE> body { font-family: helvetica, arial; } h1 { font-size: 14pt; font-weight: bold; color: #006699; } @@ -24,7 +24,7 @@ function admin_header() { </STYLE> <BODY BGCOLOR="#FFFFFF" LINK="#006699" VLINK="#004499" ALINK="#FF0000"> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="2" WIDTH="780"> - <TR><TD COLSPAN="10"><H1><? echo "$sitename"; ?> administration center</H1></TD></TR> + <TR><TD COLSPAN="10"><H1><? echo "$site_name"; ?> administration center</H1></TD></TR> <TR><TD BGCOLOR="#000000" COLSPAN="10" WIDTH="100%"><IMG SRC="images/pixel.gif" WIDTH="1" HEIGHT="1" ALT=""></TD></TR> <TR> <? @@ -67,4 +67,4 @@ function admin_footer() { <? } -?>
\ No newline at end of file +?> |