projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1887415
)
Set $path before returning the request
author
Chuck Hagenbuch
<chuck@horde.org>
Sat, 24 Jul 2010 20:10:01 +0000
(16:10 -0400)
committer
Chuck Hagenbuch
<chuck@horde.org>
Sat, 24 Jul 2010 20:10:01 +0000
(16:10 -0400)
framework/Core/lib/Horde/Core/Factory/Request.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde/Core/Factory/Request.php
b/framework/Core/lib/Horde/Core/Factory/Request.php
index
9856c14
..
599df1f
100644
(file)
--- a/
framework/Core/lib/Horde/Core/Factory/Request.php
+++ b/
framework/Core/lib/Horde/Core/Factory/Request.php
@@
-5,6
+5,8
@@
class Horde_Core_Factory_Request
{
public function create(Horde_Injector $injector)
{
- return new Horde_Controller_Request_Http($_SERVER['REQUEST_URI']);
+ $request = new Horde_Controller_Request_Http();
+ $request->setPath($_SERVER['REQUEST_URI']);
+ return $request;
}
}