Skip to content

Commit

Permalink
fixup! use proper types in API (fossar#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
niol committed Mar 9, 2018
1 parent c4789c6 commit 0966c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/Sources.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function write() {

// clean up title and tag data to prevent XSS
$title = htmlspecialchars($data['title']);
$tags = htmlspecialchars(implode(",", $data['tags']));
$tags = htmlspecialchars(implode(',', $data['tags']));
$spout = $data['spout'];
$filter = $data['filter'];
$isAjax = isset($data['ajax']);
Expand Down

0 comments on commit 0966c2b

Please sign in to comment.