in['mark'] == 0) { ?>

Welcome to Bugdar

This upgrade will take from Bugdar 1.1.0 Release Candidate 1 to Bugdar 1.1.0 (final).

Not much has to be done, we just have a quick rename and version number change.

To begin the process, please click the button below.

in['mark'] == 1) { ?>

Rename Automatic Actions

Simply for aesthetic's sake, we've ranamed "Automatic Actions" to "Automations." This does all the necessary database changes to make that rename work internally.

query("ALTER TABLE " . TABLE_PREFIX . "autoaction RENAME " . TABLE_PREFIX . "automation"); echo "Renaming datbase table
\n"; $db->query("DELETE FROM " . TABLE_PREFIX . "datastore WHERE title = 'autoaction'"); echo "Clearing old datastore information
\n"; build_automations(); echo "Rebuilding the automations cahce
\n"; } // ################################################################### if ($bugsys->in['mark'] == 2) { ?>

Version Number Change

This step finishes the upgrade by inreasing your version number.

query("UPDATE " . TABLE_PREFIX . "setting SET value = '1.1.0' WHERE varname = 'trackerversion'"); build_settings(); ?> ... done.