XSS prevention for Radio Page
This commit is contained in:
parent
53b67d0826
commit
abc81a92b4
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Created by PhpStorm.
|
||||||
|
* User: asantoni
|
||||||
|
* Date: 12/06/15
|
||||||
|
* Time: 12:24 PM
|
||||||
|
*/
|
||||||
|
|
||||||
|
class SecurityHelper {
|
||||||
|
|
||||||
|
}
|
|
@ -15,8 +15,8 @@
|
||||||
|
|
||||||
|
|
||||||
<div id="tab-2" class="about_us tab_content">
|
<div id="tab-2" class="about_us tab_content">
|
||||||
<h1><?php echo $this->stationName ?></h1>
|
<h1><?php echo $this->escape($this->stationName) ?></h1>
|
||||||
<p><?php echo $this->stationDescription ?></p>
|
<p><?php echo $this->escape($this->stationDescription) ?></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="tab-3" class="login tab_content">
|
<div id="tab-3" class="login tab_content">
|
||||||
|
|
Loading…
Reference in New Issue