Browse Source

fix custom routes defined by apps

remotes/origin/stable6
Robin Appelman 13 years ago
parent
commit
c47e46fda0
  1. 2
      lib/private/request.php

2
lib/private/request.php

@ -165,7 +165,7 @@ class OC_Request {
if (strpos($path_info, $name) === 0) {
$path_info = substr($path_info, strlen($name));
}
return rtrim($path_info, '/');
return $path_info;
}
/**

Loading…
Cancel
Save