Icons/DetailPage

* don't cast name to ucFirst
This commit is contained in:
Sarjuuk
2021-02-15 19:16:10 +01:00
parent 0c1b73d6ac
commit 8313bb4194

View File

@@ -29,7 +29,7 @@ class IconPage extends GenericPage
$this->extendGlobalData($this->subject->getJSGlobals()); $this->extendGlobalData($this->subject->getJSGlobals());
$this->name = Util::ucFirst($this->subject->getField('name')); $this->name = $this->subject->getField('name');
$this->icon = $this->subject->getField('name', true, true); $this->icon = $this->subject->getField('name', true, true);
} }