fix custom routes defined by apps

This commit is contained in:
Robin Appelman 2013-11-27 15:35:49 +01:00
parent 5b7b053634
commit c47e46fda0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
/**