Erlaube auch einen Get-Parameter für den Speicherplatz
Bernd Wurst

Bernd Wurst commited on 2017-02-25 19:09:10
Zeige 1 geänderte Dateien mit 2 Einfügungen und 2 Löschungen.

... ...
@@ -49,8 +49,8 @@ if ($hosting['brutto'] == 0) {
49 49
 $customerquota = get_customerquota();
50 50
 
51 51
 $count = 1024;
52
-if (isset($_POST['count']) && (int) $_POST['count'] > 0) {
53
-  $count = (int) $_POST['count'];
52
+if (isset($_REQUEST['count']) && (int) $_REQUEST['count'] > 0) {
53
+  $count = (int) $_REQUEST['count'];
54 54
 }
55 55
 
56 56
 output("<p>Ihr aktuell zugeteilter Speicherplatz (ggf. inklusive Mitbenutzer) beträgt <strong>${customerquota} MB</strong>. Sie können weiteren Speicherplatz hinzubuchen.</p>");
57 57