]> git.sur5r.net Git - bacula/bacula/commitdiff
baculum: Tweak full job name
authorMarcin Haba <marcin.haba@bacula.pl>
Sun, 9 Nov 2014 17:49:53 +0000 (18:49 +0100)
committerMarcin Haba <marcin.haba@bacula.pl>
Sun, 9 Nov 2014 17:49:53 +0000 (18:49 +0100)
gui/baculum/protected/Portlets/JobConfiguration.php

index b2bcd404e332524441d6d40ff98effb9b18ee55d..c3eae555d247135213edf7a09ca2dae63c74c615 100644 (file)
@@ -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
+?>