diff --git a/mozilla/webtools/testopia/Bugzilla/Testopia/TestCaseRun.pm b/mozilla/webtools/testopia/Bugzilla/Testopia/TestCaseRun.pm index 6c80dbbe2f4..d2d4fcd0be2 100644 --- a/mozilla/webtools/testopia/Bugzilla/Testopia/TestCaseRun.pm +++ b/mozilla/webtools/testopia/Bugzilla/Testopia/TestCaseRun.pm @@ -538,7 +538,7 @@ sub get_history { INNER JOIN test_builds tb ON tcr.build_id = tb.build_id INNER JOIN test_environments te ON tcr.environment_id = te.environment_id INNER JOIN test_case_run_status tcrs ON tcr.case_run_status_id = tcrs.case_run_status_id - INNER JOIN profiles p ON tcr.testedby = p.userid + LEFT JOIN profiles p ON tcr.testedby = p.userid WHERE case_id = ? AND run_id = ?", {'Slice' =>{}}, ($self->{'case_id'}, $self->{'run_id'})); diff --git a/mozilla/webtools/testopia/testopia/js/run.js b/mozilla/webtools/testopia/testopia/js/run.js index 5950b6f1aff..6c056135298 100644 --- a/mozilla/webtools/testopia/testopia/js/run.js +++ b/mozilla/webtools/testopia/testopia/js/run.js @@ -313,7 +313,7 @@ Ext.extend(RunGrid, Ext.grid.EditorGridPanel, { text: 'Edit', menu: { items: [{ - text: 'Manger', + text: 'Manager', handler: function(){ var win = new Ext.Window({ title: 'Change Run Manager', diff --git a/mozilla/webtools/testopia/testopia/js/util.js b/mozilla/webtools/testopia/testopia/js/util.js index 163f2cd2631..ea873d22048 100755 --- a/mozilla/webtools/testopia/testopia/js/util.js +++ b/mozilla/webtools/testopia/testopia/js/util.js @@ -565,7 +565,9 @@ Ext.extend(CaseCategoryCombo, Ext.form.ComboBox); * EnvironmentCombo */ EnvironmentCombo = function(cfg){ - cfg.params.viewall = 1; + if (cfg.params) { + cfg.params.viewall = 1; + } EnvironmentCombo.superclass.constructor.call(this,{ id: cfg.id || 'environment_combo', store: cfg.transform ? false : new EnvironmentStore(cfg.params, cfg.mode == 'local'? true : false),