Parcourir la source

* updated sweedish
* updated finnish
* code cleanups
* updated changelog

Luke Ehresman il y a 24 ans
Parent
commit
2c8d90f5d6
2 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. 6 0
      ChangeLog
  2. 1 1
      src/delete_message.php

+ 6 - 0
ChangeLog

@@ -1,5 +1,11 @@
 Version 1.0.2 -- DEVELOPMENT
 ----------------------------
+- Select All works through the search
+- Better escaped string handling from POST variables
+- Fixed bug that set all wrong.
+- Many more code cleanups and optomizations
+- Updated Sweedish translation
+- Updated Finnish translation
 
 Version 1.0.1 -- February 1, 2001 
 ---------------------------------

+ 1 - 1
src/delete_message.php

@@ -33,7 +33,7 @@
       sqimap_mailbox_expunge($imapConnection, $mailbox, true);
 
    $location = get_location();
-   if ($where && $what)
+   if (isset($where) && isset($what))
       header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox));
    else   
       header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox));