Typo in "development"

This commit is contained in:
savetheinternet@n0v4.com 2010-11-26 01:20:04 -08:00
parent 0a6aab860a
commit e4683b93e1

View File

@ -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);
}