From c2d2fb73095a32394dd95e72421aec49fa2cd6f6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 13 May 2003 18:36:38 +0000 Subject: - Fixed a typo in the PostgreSQL database scheme. Patch by Michael Frankowski. - Fixed a typo in the MSSQL database scheme. Patch by Michael Frankowski. - Removed dependency on "register_globals = on"! Patches by Michael Frankowski. Notes: + Updated the patches to use $foo["bar"] instead of $foo['bar']. + Updated the INSTALL and CHANGELOG files as well. - Tiny improvement to the "./scripts/code-clean.sh" script. --- modules/cloud.module | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/cloud.module') diff --git a/modules/cloud.module b/modules/cloud.module index 71e49b7bb..613771943 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -185,7 +185,8 @@ function cloud_block($op = "list", $delta = 0) { } function cloud_admin() { - global $op, $edit; + $op = $_POST["op"]; + $edit = $_POST["edit"]; if (empty($op)) { $op = arg(3); -- cgit v1.2.3