Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 squirrelmail-msg-flags (1.1-1) wheezy; urgency=low
 .
   * Added desctription
   * changed string {plus, minus}.gif to {plus, minus}.png
Author: Jean-Denis Gebhardt <jean-denis.gebhardt@noris.net>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- squirrelmail-msg-flags-1.1.orig/msg_flags/msg_flags-squirrelmail-1.4.1.diff
+++ squirrelmail-msg-flags-1.1/msg_flags/msg_flags-squirrelmail-1.4.1.diff
@@ -121,10 +121,10 @@
              'href="left_main.php?';
      if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) {
 -        $link .= "unfold=$mailbox\">+";
-+        $link .= "unfold=$mailbox\"><IMG src=\"../images/plus.gif\" border=\"0\" height=\"7\" width=\"7\">";
++        $link .= "unfold=$mailbox\"><IMG src=\"../images/plus.png\" border=\"0\" height=\"7\" width=\"7\">";
      } else {
 -        $link .= "fold=$mailbox\">-";
-+        $link .= "fold=$mailbox\"><IMG src=\"../images/minus.gif\" border=\"0\" height=\"7\" width=\"7\">";
++        $link .= "fold=$mailbox\"><IMG src=\"../images/minus.png\" border=\"0\" height=\"7\" width=\"7\">";
      }
      $link .= '</a>';
  
--- squirrelmail-msg-flags-1.1.orig/msg_flags/src/left_main.php
+++ squirrelmail-msg-flags-1.1/msg_flags/src/left_main.php
@@ -173,9 +173,9 @@ function create_collapse_link($boxnum) {
     $link = '<a target="left" style="text-decoration:none" ' .
             'href="left_main.php?';
     if ($boxes[$boxnum]['collapse'] == SM_BOX_COLLAPSED) {
-        $link .= "unfold=$mailbox\"><IMG src=\"../images/plus.gif\" border=\"0\" height=\"7\" width=\"7\">";
+        $link .= "unfold=$mailbox\"><IMG src=\"../images/plus.png\" border=\"0\" height=\"7\" width=\"7\">";
     } else {
-        $link .= "fold=$mailbox\"><IMG src=\"../images/minus.gif\" border=\"0\" height=\"7\" width=\"7\">";
+        $link .= "fold=$mailbox\"><IMG src=\"../images/minus.png\" border=\"0\" height=\"7\" width=\"7\">";
     }
     $link .= '</a>';
 
@@ -470,9 +470,9 @@ function ListAdvancedBoxes ($boxes, $mbx
     			$collapse = ($collapse == '' ? SM_BOX_UNCOLLAPSED : $collapse);
 		    }
 		    if ($collapse) {
-    			$link = '<a href="javascript:void(0)">'." <img src=\"../images/plus.gif\" border=\"1\" id=$j onclick=\"hidechilds(this)\" /></a>";
+    			$link = '<a href="javascript:void(0)">'." <img src=\"../images/plus.png\" border=\"1\" id=$j onclick=\"hidechilds(this)\" /></a>";
 		    } else {
-    			$link = '<a href="javascript:void(0)">'."<img src=\"../images/minus.gif\" border=\"1\" id=$j onclick=\"hidechilds(this)\" /></a>";
+    			$link = '<a href="javascript:void(0)">'."<img src=\"../images/minus.png\" border=\"1\" id=$j onclick=\"hidechilds(this)\" /></a>";
 		    }
 		    $collapse_link = $link;
 		} else $collapse_link='';
@@ -569,12 +569,12 @@ $xtra .= <<<ECHO
 	       if(ele.style.display == "none") {
                   ele.style.display = "block";
 	          ele.style.visibility = "visible"
-                  el.src="../images/minus.gif";
+                  el.src="../images/minus.png";
                   document.all[form_id].value=0;
                } else {
                   ele.style.display = "none";
 	          ele.style.visibility = "hidden"
-	          el.src="../images/plus.gif";
+	          el.src="../images/plus.png";
 	          document.all[form_id].value=1;
 	       }
 	    }
@@ -584,12 +584,12 @@ $xtra .= <<<ECHO
 	       if(ele.style.display == "none") {
 	          ele.style.display = "block";
 	          ele.style.visibility = "visible"
-	          el.src="../images/minus.gif";
+	          el.src="../images/minus.png";
                   document.getElementById(form_id).value=0;
 	       } else {
 	          ele.style.display = "none";
 	          ele.style.visibility = "hidden"
-	          el.src="../images/plus.gif";
+	          el.src="../images/plus.png";
                   document.getElementById(form_id).value=1;
 	       }
 	    }   
