+2015-01-10 Ryosuke Niwa <rniwa@webkit.org>
+
+ Unreviewed build fix. Removed the stale code.
+
+ * public/admin/triggerables.php:
+
2015-01-09 Ryosuke Niwa <rniwa@webkit.org>
Perf dashboard should have the ability to post A/B testing builds
if ($db) {
if ($action == 'add') {
- if ($db->insert_row('build_triggerables', 'triggerable', array('name' => $_POST['name'], 'location' => $_POST['location']))) {
+ if ($db->insert_row('build_triggerables', 'triggerable', array('name' => $_POST['name']))) {
notice('Inserted the new triggerable.');
regenerate_manifest();
} else
} else if ($action == 'update') {
if (update_field('build_triggerables', 'triggerable', 'name'))
regenerate_manifest();
- else if (update_field('build_triggerables', 'triggerable', 'location'))
- regenerate_manifest();
else
notice('Invalid parameters.');
} else if ($action == 'update-repositories') {