Index: ManualTests/blackberry/http-cookie-database-set.php |
diff --git a/ManualTests/blackberry/http-cookie-database-set.php b/ManualTests/blackberry/http-cookie-database-set.php |
deleted file mode 100644 |
index 223f52c056a155ebd3b7c80d0c8a3c8f4f0e5637..0000000000000000000000000000000000000000 |
--- a/ManualTests/blackberry/http-cookie-database-set.php |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<?php if (isset($_COOKIE["db_cookie"])) { |
- if ($_COOKIE["db_cookie"] == "https_cookie") |
- echo 'PASS'; |
- else |
- echo 'FAIL'; |
- } else { |
- header("Set-Cookie: db_cookie = http_cookie; expires=Thu, 12-Apr-2312 08:32:29 GMT;"); |
- $path = str_replace("http-cookie-database-set.php", "http-cookie-database-update.php", $_SERVER["PHP_SELF"]); |
- $newurl = 'https://'.$_SERVER["HTTP_HOST"].$path; |
- $location = 'Location:'.$newurl; |
- header($location); |
- } |
-?> |
- |