From b80e422275530234ed9d4d767484a24567f91565 Mon Sep 17 00:00:00 2001 From: Chaoyi Zha Date: Thu, 15 Feb 2018 14:55:46 -0500 Subject: Update ISSUE_TEMPLATE.md --- .github/ISSUE_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 6348fa0..609fc18 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,4 +1,5 @@ + ## Expected Behavior -- cgit v1.2.3 From a243a87de8dfea92e07e6a5f7348c0e46be9b6fe Mon Sep 17 00:00:00 2001 From: Sam Ezeh Date: Tue, 20 Feb 2018 04:18:19 +0000 Subject: Sanitised URLs (#420) Escape special characters in long URLs in DataTables --- app/Http/Controllers/AdminPaginationController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/AdminPaginationController.php b/app/Http/Controllers/AdminPaginationController.php index 01297ab..827ed39 100644 --- a/app/Http/Controllers/AdminPaginationController.php +++ b/app/Http/Controllers/AdminPaginationController.php @@ -17,8 +17,8 @@ class AdminPaginationController extends Controller { /* Cell rendering functions */ public function renderLongUrlCell($link) { - return '' . str_limit($link->long_url, 50) . ' - '; + return '' . e(str_limit($link->long_url, 50)) . ' + '; } public function renderClicksCell($link) { -- cgit v1.2.3