From 3a3aec221a4a4c955d46d029fce428fe3353a243 Mon Sep 17 00:00:00 2001 From: WGH Date: Thu, 20 Jun 2013 00:54:02 +0400 Subject: fixes "undefined index" notice --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/index.php b/install/index.php index 83f3d3821..f71a779fa 100644 --- a/install/index.php +++ b/install/index.php @@ -199,7 +199,7 @@ } function make_self_url_path() { - $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH); + $url_path = ((!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH); return $url_path; } -- cgit v1.2.3 From 2f20dd58d277d0ec5e4898feed0f530479a0c831 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 10 Jul 2013 13:09:12 +0400 Subject: integrate silk icons by Mark James --- install/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install') diff --git a/install/index.php b/install/index.php index f71a779fa..440954537 100644 --- a/install/index.php +++ b/install/index.php @@ -80,13 +80,13 @@ } function print_error($msg) { - print "
+ print "
$msg
"; } function print_notice($msg) { print "
- $msg
"; + $msg
"; } function db_connect($host, $user, $pass, $db, $type, $port = false) { -- cgit v1.2.3 From 81c8a93eaf6862111e59219727fa27bed4c1a1b9 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 18 Dec 2013 13:25:22 +0400 Subject: define define_default() in installer --- install/index.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'install') diff --git a/install/index.php b/install/index.php index 440954537..1a2ce9aba 100644 --- a/install/index.php +++ b/install/index.php @@ -10,6 +10,12 @@ Date: Tue, 28 Jan 2014 15:32:19 +0400 Subject: load stylesheets/scripts using helper functions in a few more places --- install/index.php | 1 + 1 file changed, 1 insertion(+) (limited to 'install') diff --git a/install/index.php b/install/index.php index 1a2ce9aba..bb77de56e 100644 --- a/install/index.php +++ b/install/index.php @@ -3,6 +3,7 @@ Tiny Tiny RSS - Installer + -- cgit v1.2.3 From 5d678429615e09956cf32958c601b15bc84df74f Mon Sep 17 00:00:00 2001 From: Christophe Mehay Date: Sat, 4 Oct 2014 23:10:36 +0200 Subject: Removing required attribute from database password field --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/index.php b/install/index.php index bb77de56e..a3f21cbb3 100644 --- a/install/index.php +++ b/install/index.php @@ -270,7 +270,7 @@
- +
-- cgit v1.2.3