Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.1245
diff -u -p -r1.1245 node.module
--- modules/node/node.module	8 Mar 2010 02:41:46 -0000	1.1245
+++ modules/node/node.module	10 Mar 2010 17:37:36 -0000
@@ -1412,6 +1412,10 @@ function theme_node_log_message($variabl
  */
 function node_permission() {
   $perms = array(
+    'bypass node access' => array(
+      'title' => t('Bypass content access control'),
+      'description' => t('View, edit and delete all content regardless of permission restrictions. %warning', array('%warning' => t('Warning: Give to trusted roles only; this permission has security implications.'))),
+    ),
     'administer content types' => array(
       'title' => t('Administer content types'),
       'description' => drupal_placeholder(array('text' => t('Warning: Give to trusted roles only; this permission has security implications.'))),
@@ -1420,15 +1424,14 @@ function node_permission() {
       'title' => t('Administer content'),
       'description' => drupal_placeholder(array('text' => t('Warning: Give to trusted roles only; this permission has security implications.'))),
     ),
+    'access content overview' => array(
+      'title' => t('View the content overview page'),
+    ),
     'access content' => array(
       'title' => t('View published content'),
     ),
-    'access content overview' => array(
-      'title' => t('Access the content overview page'),
-    ),
-    'bypass node access' => array(
-      'title' => t('Bypass content access control'),
-      'description' => t('View, edit and delete all content regardless of permission restrictions. %warning', array('%warning' => t('Warning: Give to trusted roles only; this permission has security implications.'))),
+    'view own unpublished content' => array(
+      'title' => t('View own unpublished content'),
     ),
     'view revisions' => array(
       'title' => t('View content revisions'),
@@ -1439,9 +1442,6 @@ function node_permission() {
     'delete revisions' => array(
       'title' => t('Delete content revisions'),
     ),
-    'view own unpublished content' => array(
-      'title' => t('View own unpublished content'),
-    ),
   );
 
   // Generate standard node permissions for all applicable node types.
