--- gallery.module.save-20070312	2007-02-16 23:14:10.000000000 +0100
+++ gallery.module	2007-03-12 22:54:33.000000000 +0100
@@ -242,6 +242,20 @@
       }
       drupal_set_breadcrumb($breadcrumb);
     }
+
+    // hack to get the admin sitebar
+    if (preg_match("!^(.*<td id=\"gsSidebarCol\">)(.*?)(</td>.*?)$!s", $result['bodyHtml'], $m)) {
+	// new body
+        $result['bodyHtml'] = $m[1] . $m[3];
+	// insert admin sidebar in $result['sidebarBlocksHtml']
+	// it should have index 1 - this index is empty?
+	if (empty($result['sidebarBlocksHtml'][1])) {
+	    $result['sidebarBlocksHtml'][1] = $m[2];
+	} else {
+	    $result['sidebarBlocksHtml'][] = $m[2];
+	}
+    }
+
     // Store the sidebar info in a global variable for use in the gallery navigation block 
     $gallery_sidebar = $result['sidebarBlocksHtml'];
 
