2008-08-19 21:13:29 +00:00
|
|
|
<?
|
|
|
|
function db_update_111_post()
|
|
|
|
{
|
2025-01-29 03:30:48 +00:00
|
|
|
global $config, $pdo;
|
|
|
|
// grab the index page
|
2025-02-04 21:48:23 +00:00
|
|
|
$q = $pdo->prepare("SELECT * FROM pagetext WHERE textname='index' AND year=?");
|
|
|
|
$q->execute([$config['FAIRYEAR']]);
|
2025-01-29 03:30:48 +00:00
|
|
|
if (!$q->rowCount()) {
|
|
|
|
$q = $pdo->prepare("SELECT * FROM pagetext WHERE textname='index' AND year='-1'");
|
2024-12-12 16:24:45 -05:00
|
|
|
$q->execute();
|
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
|
|
|
// insert it into the CMS under index.html
|
2025-02-04 21:48:23 +00:00
|
|
|
$stmt = $pdo->prepare("INSERT INTO cms (filename,dt,lang,text,showlogo) VALUES ('index.html',?,?,?,'1')");
|
|
|
|
$stmt->execute([$r->lastupdate,$r->lang,$r->text]);
|
2008-08-19 21:13:29 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
// and remove it from the pagetext
|
2024-12-12 16:24:45 -05:00
|
|
|
$stmt = $pdo->prepare("DELETE FROM pagetext WHERE textname='index'");
|
|
|
|
$stmt->execute();
|
2008-08-19 21:13:29 +00:00
|
|
|
}
|
|
|
|
?>
|