Index: quicktagsplus.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/quicktags/contrib/quicktagsplus/quicktagsplus.module,v
retrieving revision 1.2
diff -u -r1.2 quicktagsplus.module
--- quicktagsplus.module	12 Nov 2007 18:32:41 -0000	1.2
+++ quicktagsplus.module	12 Nov 2007 19:41:43 -0000
@@ -23,84 +23,98 @@
       'name' => 'Image',
       'prefix' => '<img src="',
       'suffix' => '" />',
+      'weight' => 70,
       'icon' => $path .'ed_image.png'
     ),
     'ed_heading1' => array( 
       'name' => 'Heading 1',
       'prefix' => '<h1>',
       'suffix' => '</h1>',
+      'weight' => 75,
       'icon' => $path .'ed_h1.png',
     ),
     'ed_heading2' => array( 
       'name' => 'Heading 2',
       'prefix' => '<h2>',
       'suffix' => '</h2>',
+      'weight' => 76,
       'icon' => $path .'ed_h2.png',
     ),
     'ed_heading3' => array( 
       'name' => 'Heading 3',
       'prefix' => '<h3>',
       'suffix' => '</h3>',
+      'weight' => 77,
       'icon' => $path .'ed_h3.png',
     ),
     'ed_cite' => array( 
       'name' => 'Citation Text',
       'prefix' => '<cite>',
       'suffix' => '</cite>',
+      'weight' => 80,
       'icon' => $path .'ed_cite.png',
     ),
     'ed_comment' => array( 
       'name' => 'Insert a comment which will not be visible',
       'prefix' => '<!--',
       'suffix' => '-->',
+      'weight' => 81,
       'icon' => $path .'ed_comment.png',
     ),
     'ed_unorderedlist' => array( 
       'name' => 'Unordered List',
       'prefix' => '<ul><li>',
       'suffix' => '</li></ul>',
+      'weight' => 82,
       'icon' => $path .'ed_ul.png',
     ),
     'ed_orderedlist' => array( 
       'name' => 'Ordered List',
       'prefix' => '<ol><li>',
       'suffix' => '</li></ol>',
+      'weight' => 83,
       'icon' => $path .'ed_ol.png',
     ),
     'ed_listitem' => array( 
       'name' => 'List Item',
       'prefix' => '<li>',
       'suffix' => '</li>',
+      'weight' => 84,
       'icon' => $path .'ed_li.png',
     ),
     'ed_underline' => array( 
       'name' => 'Underline',
       'prefix' => '<ins>',
       'suffix' => '</ins>',
+      'weight' => 85,
       'icon' => $path .'ed_ins.png',
     ),
     'ed_strike' => array( 
       'name' => 'Strikethrough',
       'prefix' => '<del>',
       'suffix' => '</del>',
+      'weight' => 86,
       'icon' => $path .'ed_del.png',
     ),
     'ed_superscript' => array( 
       'name' => 'Superscript',
       'prefix' => '<sup>',
       'suffix' => '</sup>',
+      'weight' => 87,
       'icon' => $path .'ed_super.png',
     ),
     'ed_subscript' => array( 
       'name' => 'Subscript',
       'prefix' => '<sub>',
       'suffix' => '</sub>',
+      'weight' => 88,
       'icon' => $path .'ed_sub.png',
     ),
     'ed_break' => array( 
       'name' => 'Force a Line Break',
       'prefix' => '<br />',
       'close' => FALSE,
+      'weight' => 89,
       'icon' => $path .'ed_break.png',
     ),    
   );
