summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/new-post.php6
-rw-r--r--views/partials/syndication-js.php2
2 files changed, 4 insertions, 4 deletions
diff --git a/views/new-post.php b/views/new-post.php
index 7c4d3cf..da3927d 100644
--- a/views/new-post.php
+++ b/views/new-post.php
@@ -44,9 +44,9 @@
echo '<ul>';
foreach($this->syndication_targets as $syn) {
echo '<li>'
- . '<button data-syndicate-to="'.(isset($syn['uid']) ? $syn['uid'] : $syn['target']).'" class="btn btn-default btn-block">'
- . ($syn['favicon'] ? '<img src="'.$syn['favicon'].'" width="16" height="16"> ' : '')
- . $syn['target']
+ . '<button data-syndicate-to="'.(isset($syn['uid']) ? htmlspecialchars($syn['uid']) : htmlspecialchars($syn['target'])).'" class="btn btn-default btn-block">'
+ . ($syn['favicon'] ? '<img src="'.htmlspecialchars($syn['favicon']).'" width="16" height="16"> ' : '')
+ . htmlspecialchars($syn['target'])
. '</button>'
. '</li>';
}
diff --git a/views/partials/syndication-js.php b/views/partials/syndication-js.php
index 088cb43..6267327 100644
--- a/views/partials/syndication-js.php
+++ b/views/partials/syndication-js.php
@@ -7,7 +7,7 @@ function reload_syndications() {
var target = data.targets[i].target;
var uid = data.targets[i].uid;
var favicon = data.targets[i].favicon;
- $("#syndication-container ul").append('<li><button data-syndicate-to="'+(uid ? uid : target)+'" class="btn btn-default btn-block">'+(favicon ? '<img src="'+favicon+'" width="16" height="16"> ':'')+target+'</button></li>');
+ $("#syndication-container ul").append('<li><button data-syndicate-to="'+htmlspecialchars(uid ? uid : target)+'" class="btn btn-default btn-block">'+(favicon ? '<img src="'+htmlspecialchars(favicon)+'" width="16" height="16"> ':'')+htmlspecialchars(target)+'</button></li>');
}
bind_syndication_buttons();
} else {