Skip to:
Content

bbPress.org

Changeset 24 for trunk/bb-settings.php


Ignore:
Timestamp:
12/29/2004 12:59:50 AM (20 years ago)
Author:
matt
Message:

We've got registration!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-settings.php

    r18 r24  
    2929$static_title = '';
    3030
    31 if ( !get_magic_quotes_gpc() ) {
    32     $_GET    = add_magic_quotes($_GET   );
    33     $_POST   = add_magic_quotes($_POST  );
    34     $_COOKIE = add_magic_quotes($_COOKIE);
    35     $_SERVER = add_magic_quotes($_SERVER);
    36 }
     31$_GET    = bb_global_sanitize($_GET   );
     32$_POST   = bb_global_sanitize($_POST  );
     33$_COOKIE = bb_global_sanitize($_COOKIE);
     34$_SERVER = bb_global_sanitize($_SERVER);
    3735
    3836function bb_shutdown_action_hook() {
Note: See TracChangeset for help on using the changeset viewer.