From 93efb8404fb6847f56e67fcd8eceff1da7664f52 Mon Sep 17 00:00:00 2001 From: jamiesensei Date: Thu, 12 Mar 2009 09:03:47 +0000 Subject: [PATCH] Fixed "PHP Notice: Use of undefined constant classpath - assumed 'classpath'" --- webservice/amf/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/amf/lib.php b/webservice/amf/lib.php index 6c29f252df..084d765607 100644 --- a/webservice/amf/lib.php +++ b/webservice/amf/lib.php @@ -49,7 +49,7 @@ final class amf_server extends webservice_server { Zend_Loader::registerAutoload(); //retrieve the api name - $classpath = optional_param(classpath,'user',PARAM_ALPHA); + $classpath = optional_param('classpath','user',PARAM_ALPHA); require_once(dirname(__FILE__) . '/../../'.$classpath.'/external.php'); /// run the Zend AMF server -- 2.39.5