diff options
author | Starla Insigna <starla4444@gmail.com> | 2010-12-11 14:05:05 -0500 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2010-12-11 14:05:05 -0500 |
commit | 74db7a24d9c2230b104979f4e4981c57ff73de71 (patch) | |
tree | 3059bb0a955a662cd9e04208eb6276071cea4c8a /admin.php | |
parent | 9efe4feaf5e19e51a18a229a6db36c5508e9faea (diff) | |
download | fourisland-74db7a24d9c2230b104979f4e4981c57ff73de71.tar.gz fourisland-74db7a24d9c2230b104979f4e4981c57ff73de71.tar.bz2 fourisland-74db7a24d9c2230b104979f4e4981c57ff73de71.zip |
Made Four Island 2 a little more sane
I spent the last few hours sanitizing the database and fixing huge bugs in the code. Among the changes made were: - "Theoretically related posts" have been removed due to the lack of FULLTEXT index support in InnoDB tables - Removed tons of stripslashes() calls that were used to remove slashes from records before I realized (while doing all of this work) that magic_quotes_gpc was on for some reason. I mean, like, come on! - Replaced all non-library uses of htmlentities() with htmlspecialchars(), which basically does the same thing except it doesn't mangle Unicode. - Completely eradicated polls. Note that this does mean that all database backups prior to December 11th 2010 are now incompatible with Four Island.
Diffstat (limited to 'admin.php')
-rwxr-xr-x | admin.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/admin.php b/admin.php index 6657983..e7d4a8d 100755 --- a/admin.php +++ b/admin.php | |||
@@ -50,8 +50,6 @@ if (file_exists('admin/' . $pageName . '.php')) | |||
50 | $doc = ob_get_contents(); | 50 | $doc = ob_get_contents(); |
51 | ob_end_clean(); | 51 | ob_end_clean(); |
52 | 52 | ||
53 | $doc = stripslashes($doc); | ||
54 | |||
55 | $template = new FITemplate('admin/header'); | 53 | $template = new FITemplate('admin/header'); |
56 | $template->add(strtoupper($category) . 'ACTIVECAT', ' class="active"'); | 54 | $template->add(strtoupper($category) . 'ACTIVECAT', ' class="active"'); |
57 | $template->adds_block(strtoupper($category) . 'ISACTIVECAT', array('exi'=>1)); | 55 | $template->adds_block(strtoupper($category) . 'ISACTIVECAT', array('exi'=>1)); |