Completed
Push — master ( 8e6741...0152a0 )
by Henri
03:03
created
model/Concept.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -463,11 +463,11 @@
 block discarded – undo
463 463
             trigger_error($e->getMessage(), E_USER_WARNING);
464 464
             $ret = '';
465 465
             if ($this->resource->get('dc11:modified') || $this->resource->get('dc:modified')) {
466
-                $modified = $this->resource->get('dc11:modified') ? (string) $this->resource->get('dc11:modified') : (string) $this->resource->get('dc:modified');
466
+                $modified = $this->resource->get('dc11:modified') ? (string)$this->resource->get('dc11:modified') : (string)$this->resource->get('dc:modified');
467 467
                 $ret = gettext('skosmos:modified') . ' ' . $modified; 
468 468
             }
469 469
             if ($this->resource->get('dc11:created') || $this->resource->get('dc:created')) {
470
-                $created .= $this->resource->get('dc11:created') ? (string) $this->resource->get('dc11:created') : (string) $this->resource->get('dc:created');
470
+                $created .= $this->resource->get('dc11:created') ? (string)$this->resource->get('dc11:created') : (string)$this->resource->get('dc:created');
471 471
                 $ret .= ' ' . gettext('skosmos:created') . ' ' . $created; 
472 472
             }
473 473
         }
Please login to merge, or discard this patch.