diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-07-27 08:08:54 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-07-27 11:13:28 +0000 |
commit | e6c1f4a663bf13c35e0a92ce7243d282a4a29c8c (patch) | |
tree | 0d6a91e95cc690d058f478f4543141ac060866e2 /main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch | |
parent | aa12abff47161235a3c11ec5c92465e98674234b (diff) | |
download | aports-e6c1f4a663bf13c35e0a92ce7243d282a4a29c8c.tar.bz2 aports-e6c1f4a663bf13c35e0a92ce7243d282a4a29c8c.tar.xz |
main/lighttpd: upgrade to 1.4.36
Diffstat (limited to 'main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch')
-rw-r--r-- | main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch b/main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch deleted file mode 100644 index f37b98cdba..0000000000 --- a/main/lighttpd/0025-tests-fix-undefined-index-warning-in-sendfile.php.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 673923daf839fda59e4dc1e5f95f5b265a65e802 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Stefan=20B=C3=BChler?= <stbuehler@web.de> -Date: Sun, 8 Feb 2015 19:10:58 +0000 -Subject: [PATCH 25/29] [tests] fix undefined index warning in sendfile.php -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -From: Stefan Bühler <stbuehler@web.de> - -git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2985 152afb58-edef-0310-8abb-c4023f1b3aa9 ---- - tests/docroot/www/sendfile.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/docroot/www/sendfile.php b/tests/docroot/www/sendfile.php -index 0aa8786..e460220 100644 ---- a/tests/docroot/www/sendfile.php -+++ b/tests/docroot/www/sendfile.php -@@ -6,7 +6,7 @@ function pathencode($path) { - - $val = "X-Sendfile2: " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range"]; - --if ($_GET["range2"]) $val .= ", " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range2"]; -+if (isset($_GET["range2"])) $val .= ", " . pathencode(getcwd() . "/index.txt") . " " . $_GET["range2"]; - - header($val); - --- -2.4.5 - |