- fixing froxlor_graphic-setting for new installations (.png => .gif)

- setting version number to 0.9.1
This commit is contained in:
Michael Kaufmann (d00p)
2010-02-11 21:32:19 +00:00
parent 75f37de29b
commit 2a7d6c5d88
3 changed files with 14 additions and 3 deletions

View File

@@ -276,4 +276,15 @@ if(isFroxlorVersion('0.9-r4'))
updateToVersion('0.9');
}
if(isFroxlorVersion('0.9'))
{
showUpdateStep("Updating from 0.9 to 0.9.1", false);
showUpdateStep("Updating settings values");
$db->query("UPDATE `" . TABLE_PANEL_SETTINGS . "` SET `value` = 'images/header.gif' WHERE `varname` = 'froxlor_graphic' AND `value` = 'images/header.png'");
lastStepStatus(0);
updateToVersion('0.9.1');
}
?>