From e4683b93e15cc8ad2b8ccf731c796929b4ec2de4 Mon Sep 17 00:00:00 2001 From: "savetheinternet@n0v4.com" Date: Fri, 26 Nov 2010 01:20:04 -0800 Subject: [PATCH] Typo in "development" --- post.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/post.php b/post.php index d44c7589..9480fbe2 100644 --- a/post.php +++ b/post.php @@ -11,13 +11,13 @@ $board = Array( 'url' => '/b/', 'name' => 'Beta', - 'title' => 'In devleopment.'); + 'title' => 'In development.'); $body = ''; - // Fix for magic quotes + Fix for magic quotes if (get_magic_quotes_gpc()) { - function strip_array(&$var) { + function strip_array($var) { return is_array($var) ? array_map("strip_array", $var) : stripslashes($var); }