2007-04-29 14:45:44 +00:00
|
|
|
<?php
|
2008-08-05 22:43:14 +00:00
|
|
|
// This file is part of BOINC.
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2008 University of California
|
|
|
|
//
|
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-02-22 19:37:55 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
|
|
|
|
set_time_limit(0);
|
|
|
|
|
|
|
|
db_init();
|
2005-02-23 00:42:14 +00:00
|
|
|
|
|
|
|
function clean_user($user) {
|
2005-02-22 19:37:55 +00:00
|
|
|
if ($user->name != strip_tags($user->name)) {
|
|
|
|
$x = strip_tags($user->name);
|
|
|
|
echo "ID: $user->id
|
|
|
|
name: $user->name
|
|
|
|
stripped name: $x
|
|
|
|
email: $user->email_addr
|
|
|
|
-----
|
|
|
|
";
|
2005-02-23 00:42:14 +00:00
|
|
|
$x = boinc_real_escape_string($x);
|
|
|
|
$x = trim($x);
|
|
|
|
$query = "update user set name='$x' where id=$user->id";
|
|
|
|
$retval = mysql_query($query);
|
|
|
|
echo $query;
|
2005-02-22 19:37:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-23 00:42:14 +00:00
|
|
|
$result = mysql_query("select id, name, email_addr from user");
|
|
|
|
while ($user = mysql_fetch_object($result)) {
|
|
|
|
clean_user($user);
|
|
|
|
}
|
|
|
|
|
2005-02-22 19:37:55 +00:00
|
|
|
?>
|