diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-13 18:36:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-13 18:36:38 +0000 |
commit | c2d2fb73095a32394dd95e72421aec49fa2cd6f6 (patch) | |
tree | 5d2d92a31480405b8c10c3b85927049238528242 /modules/archive | |
parent | 13ffd8956826fec3cd9978edf73ef67d9eb8d46e (diff) | |
download | brdo-c2d2fb73095a32394dd95e72421aec49fa2cd6f6.tar.gz brdo-c2d2fb73095a32394dd95e72421aec49fa2cd6f6.tar.bz2 |
- 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.
Diffstat (limited to 'modules/archive')
-rw-r--r-- | modules/archive/archive.module | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/archive/archive.module b/modules/archive/archive.module index 71aec57f6..1dd7b1a26 100644 --- a/modules/archive/archive.module +++ b/modules/archive/archive.module @@ -140,7 +140,10 @@ function archive_link($type) { } function archive_page() { - global $date, $edit, $op, $month, $year, $meta; + global $date, $month, $year, $meta; + + $op = $_POST["op"]; + $edit = $_POST["edit"]; theme("header"); |