From 7abd04bbef0dbb2ccfd4cbc2b787b49c7b56a838 Mon Sep 17 00:00:00 2001 From: Marcin Haba Date: Sun, 9 Nov 2014 18:49:53 +0100 Subject: [PATCH] baculum: Tweak full job name --- gui/baculum/protected/Portlets/JobConfiguration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/baculum/protected/Portlets/JobConfiguration.php b/gui/baculum/protected/Portlets/JobConfiguration.php index b2bcd404e3..c3eae555d2 100644 --- a/gui/baculum/protected/Portlets/JobConfiguration.php +++ b/gui/baculum/protected/Portlets/JobConfiguration.php @@ -36,7 +36,7 @@ class JobConfiguration extends Portlets { public function configure($jobId) { $jobdata = $this->Application->getModule('api')->get(array('jobs', $jobId))->output; - $this->JobName->Text = $jobdata->name; + $this->JobName->Text = $jobdata->job; $this->JobID->Text = $jobdata->jobid; $joblog = $this->Application->getModule('api')->get(array('joblog', $jobdata->jobid))->output; $this->Estimation->Text = is_array($joblog) ? implode(PHP_EOL, $joblog) : Prado::localize("Output for selected job is not available yet or you do not have enabled logging job logs to catalog database." . PHP_EOL . PHP_EOL . "For watching job log there is need to add to the job Messages resource next directive:" . PHP_EOL . PHP_EOL . "console = all, !skipped, !saved" . PHP_EOL); @@ -140,4 +140,4 @@ class JobConfiguration extends Portlets { $param->setIsValid($isValid); } } -?> \ No newline at end of file +?> -- 2.39.5