=== modified file 'includes/path.inc'
--- includes/path.inc	2009-01-04 20:04:32 +0000
+++ includes/path.inc	2009-03-31 19:56:23 +0000
@@ -15,7 +15,18 @@
  */
 function drupal_init_path() {
   if (!empty($_GET['q'])) {
-    $_GET['q'] = drupal_get_normal_path(trim($_GET['q'], '/'));
+    $path = trim($_GET['q'], '/');
+    $arg = '';
+    while ($path) {
+      $normal_path = drupal_get_normal_path($path);
+      if ($normal_path != $path) {
+        $_GET['q'] = $normal_path.$arg;
+        break;
+      }
+      $slash = strrpos($path, '/');
+      $arg = substr($path, $slash) . $arg;
+      $path = substr($path, 0, $slash);
+    }
   }
   else {
     $_GET['q'] = drupal_get_normal_path(variable_get('site_frontpage', 'node'));

