science-ation/db/db.update.136.php
2024-12-10 19:40:23 -05:00

37 lines
861 B
PHP

<?
function db_update_136_pre()
{
global $config;
$stmt = $pdo->prepare("UPDATE fairs SET `name` = 'Youth Science Canada',
`abbrv` = 'YSC',
`website` = 'http://apps.ysf-fsj.ca/awarddownloader/help.php',
`enable_stats` = 'yes',
`enable_awards` = 'yes',
`enable_winners` = 'yes',
`username` = '{$config['ysf_region_id']}',
`password` = '{$config['ysf_region_password']}'
WHERE
`url`='https://secure.ysf-fsj.ca/awarddownloader/index.php'");
$stmt->execute();
$stmt = $pdo->prepare("UPDATE fairs SET `abbrv` = 'STO',
`website` = 'http://www.scitechontario.org/awarddownloader/help.php',
`enable_stats` = 'yes',
`enable_awards` = 'yes',
`enable_winners` = 'yes'
WHERE
`url`='http://www.scitechontario.org/awarddownloader/index.php'");
$stmt->execute();
}
function db_update_136_post()
{
}
?>