MDL-28218 allow testclient.php to find the necessary form for services defined in plugins.

This commit is contained in:
Tim Hunt
2011-07-25 20:04:19 +02:00
committed by Petr Skoda
parent 3e6f62e3d7
commit 048f3d32d6
+3
View File
@@ -89,6 +89,9 @@ function external_function_info($function, $strictness=MUST_EXIST) {
if (isset($functions[$function->name]['description'])) {
$function->description = $functions[$function->name]['description'];
}
if (isset($functions[$function->name]['testclientpath'])) {
$function->testclientpath = $functions[$function->name]['testclientpath'];
}
}
return $function;