From: Marcin Haba Date: Sun, 9 Nov 2014 17:49:53 +0000 (+0100) Subject: baculum: Tweak full job name X-Git-Tag: Release-7.2.0~128 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7abd04bbef0dbb2ccfd4cbc2b787b49c7b56a838;p=bacula%2Fbacula baculum: Tweak full job name --- 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 +?>