From dac36c3cd889f87165ae776e3929fe9f946f67ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 2 Sep 2016 14:45:21 +0200 Subject: Stricter URL validation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - do not use empty() as empty('0') is true - do not lowercase the strings, use them as they are - lowercase all domains in our codebase - do not allow to specify port Signed-off-by: Michal Čihař --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index 5fe048ab43..2934cd1135 100644 --- a/index.php +++ b/index.php @@ -389,7 +389,7 @@ PMA_printListItem( PMA_printListItem( __('Official Homepage'), 'li_pma_homepage', - PMA_linkURL('https://www.phpMyAdmin.net/'), + PMA_linkURL('https://www.phpmyadmin.net/'), null, '_blank' ); -- cgit v1.2.3