1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-28 09:20:58 +01:00

Log in tools/import_rules

This commit is contained in:
8chan 2015-03-28 19:39:54 -07:00
parent ce596aaf65
commit 6644bd5b1d

View File

@ -7,10 +7,11 @@ $boards = listBoards(TRUE);
foreach ($boards as $i => $b) {
$rules = @file_get_contents($b.'/rules.txt');
echo "Processing board $b...\n";
if ($rules && !empty(trim($rules))) {
$query = prepare('INSERT INTO ``pages``(name, title, type, board, content) VALUES("rules", "Rules", "html", :board, :content)');
$query->bindValue(':board', $b);
$query->bindValue(':content', $rules);
$query->execute() or error(db_error($query));
$query->execute();
}
}