projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a49e64
)
Fix loading driver.
author
Jan Schneider
<jan@horde.org>
Tue, 8 Sep 2009 08:20:14 +0000
(10:20 +0200)
committer
Jan Schneider
<jan@horde.org>
Tue, 8 Sep 2009 08:23:44 +0000
(10:23 +0200)
framework/Rpc/lib/Horde/Rpc.php
patch
|
blob
|
history
diff --git
a/framework/Rpc/lib/Horde/Rpc.php
b/framework/Rpc/lib/Horde/Rpc.php
index
587f517
..
fde25a4
100644
(file)
--- a/
framework/Rpc/lib/Horde/Rpc.php
+++ b/
framework/Rpc/lib/Horde/Rpc.php
@@
-173,7
+173,7
@@
class Horde_Rpc
*/
public static function request($driver, $url, $method, $params = null, $options = array())
{
- $driver =
basename($driver
);
+ $driver =
Horde_String::ucfirst(basename($driver)
);
$class = 'Horde_Rpc_' . $driver;
if (class_exists($class)) {
return call_user_func(array($class, 'request'), $url, $method, $params, $options);