2005-09-20 05:36:35 +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/>.
|
|
|
|
|
2009-10-02 18:32:40 +00:00
|
|
|
$cli_only = true;
|
2005-09-20 05:36:35 +00:00
|
|
|
require_once("../inc/db.inc");
|
2009-09-15 18:14:37 +00:00
|
|
|
require_once("../inc/util_ops.inc");
|
2005-09-20 05:36:35 +00:00
|
|
|
require_once('../inc/sanitize_html.inc');
|
2009-12-16 22:35:08 +00:00
|
|
|
require_once('../inc/bbcode_convert.inc');
|
2009-09-15 18:14:37 +00:00
|
|
|
|
2005-09-20 05:36:35 +00:00
|
|
|
db_init();
|
|
|
|
|
2005-09-25 05:47:48 +00:00
|
|
|
set_time_limit(0);
|
2005-09-20 05:36:35 +00:00
|
|
|
|
2005-09-25 05:47:48 +00:00
|
|
|
function fix_post($post) {
|
2009-12-16 22:35:08 +00:00
|
|
|
$text = html_to_bbcode($post->content);
|
2005-09-25 05:47:48 +00:00
|
|
|
if ($text != $post->content) {
|
2014-09-04 19:00:09 +00:00
|
|
|
$query = "update post set content = '"._mysql_escape_string($text)."' where id=".$post->id;
|
2005-09-25 05:47:48 +00:00
|
|
|
//echo "$post->content\n\n";
|
|
|
|
//echo "$post->thread $query\n\n";
|
2014-09-04 19:00:09 +00:00
|
|
|
$retval = _mysql_query($query);
|
2005-09-25 05:47:48 +00:00
|
|
|
if (!$retval) {
|
2014-09-04 19:00:09 +00:00
|
|
|
echo _mysql_error();
|
2005-09-25 05:47:48 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-20 17:54:52 +00:00
|
|
|
function fix_posts() {
|
|
|
|
$start_id = 0; //Set this to something else if you like
|
2014-09-04 19:00:09 +00:00
|
|
|
$posts = _mysql_query("select * from post where id>$start_id order by id");
|
|
|
|
echo _mysql_error();
|
2005-09-20 17:54:52 +00:00
|
|
|
$i=0;
|
2014-09-04 19:00:09 +00:00
|
|
|
while ($post = _mysql_fetch_object($posts)){
|
2005-09-20 17:54:52 +00:00
|
|
|
$i++;
|
|
|
|
if ($i%100 == 0) { //For every 100 posts
|
2005-09-25 05:47:48 +00:00
|
|
|
echo $post->id.". "; flush(); // print out where we are
|
|
|
|
//usleep(200000);
|
2005-09-20 17:54:52 +00:00
|
|
|
}
|
|
|
|
|
2005-09-25 05:47:48 +00:00
|
|
|
if ($post->id > $start_id){
|
|
|
|
fix_post($post);
|
2005-09-20 17:54:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 05:47:48 +00:00
|
|
|
// use this to patch problem cases; hand-edit
|
|
|
|
function fix_fix() {
|
2014-09-04 19:00:09 +00:00
|
|
|
$posts = _mysql_query("select * from post where id=99");
|
|
|
|
$post = _mysql_fetch_object($posts);
|
2005-09-25 05:47:48 +00:00
|
|
|
fix_post($post);
|
|
|
|
}
|
|
|
|
|
2005-09-20 17:54:53 +00:00
|
|
|
fix_posts();
|
2005-09-25 05:47:48 +00:00
|
|
|
//fix_fix();
|
2005-09-20 05:36:35 +00:00
|
|
|
|
|
|
|
?>
|