Putting back old plugin behaviour. On moving the last message, the DMN plugin
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Mar 2004 19:03:25 +0000 (19:03 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 29 Mar 2004 19:03:25 +0000 (19:03 +0000)
used to select the new last message.  In 1.5.0, it selected the mailbox.  I
have reverted the behaviour

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@6954 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php

index 54ae40ea32e83b9999a557664bb64d9b7f4b4514..9f1cad70bc21239540be5e8c25bdf547c122a900 100644 (file)
@@ -687,9 +687,11 @@ function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_resp
 
         // Set subsequent location based on whether or not there is a 'next' message.
         if ( isset($next) && $next >= 0 ) {
-          $location = $base_uri . 'src/read_body.php?passed_id='.$next.'&';
+            $location = $base_uri . 'src/read_body.php?passed_id='.$next.'&';
+        } elseif (isset($prev) && $prev >= 0) {
+            $location = $base_uri . 'src/read_body.php?passed_id='.$prev.'&';
         } else {
-          $location = $base_uri . 'src/right_main.php?';
+            $location = $base_uri . 'src/right_main.php?';
         }
 
         $menu_row .= '<form action="'.$base_uri.'src/move_messages.php?'.$current_box.'" method="post">'.