mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Template/Escaped Strings
* escape creature subnames in DetailPage * escape creature names & subnames in Tooltips * js escape inherited filter froms
This commit is contained in:
@@ -37,7 +37,7 @@ class NpcPage extends GenericPage
|
||||
$this->notFound(Lang::game('npc'), Lang::npc('notFound'));
|
||||
|
||||
$this->name = Util::htmlEscape($this->subject->getField('name', true));
|
||||
$this->subname = $this->subject->getField('subname', true);
|
||||
$this->subname = Util::htmlEscape($this->subject->getField('subname', true));
|
||||
}
|
||||
|
||||
protected function generatePath()
|
||||
|
||||
Reference in New Issue
Block a user