diff options
3 files changed, 6 insertions, 1 deletions
diff --git a/demos/quickstart/protected/QuickStartGlobalization.php b/demos/quickstart/protected/QuickStartGlobalization.php index df81372c..90d62280 100755 --- a/demos/quickstart/protected/QuickStartGlobalization.php +++ b/demos/quickstart/protected/QuickStartGlobalization.php @@ -1,5 +1,8 @@ <?php +Prado::using('System.I18N.core.CultureInfo'); +Prado::using('System.Web.THttpCookie'); + class QuickStartGlobalization extends TGlobalizationAutoDetect { public function init($xml) diff --git a/tests/FunctionalTests/tickets/protected/application.xml b/tests/FunctionalTests/tickets/protected/application.xml index 113b8455..1354137a 100755 --- a/tests/FunctionalTests/tickets/protected/application.xml +++ b/tests/FunctionalTests/tickets/protected/application.xml @@ -5,7 +5,7 @@ <url ServiceID="testService" ServiceParameter="ticket653" pattern="/ticket653/?" /> <url ServiceParameter="Ticket922" pattern="/ticket922/{text}" parameters.text=".*" /> </module> - <module id="request" class="THttpRequest" UrlManager="friendly-url"/> + <module id="request" class="System.Web.THttpRequest" UrlManager="friendly-url"/> </modules> <services> <!-- Define a new PageService, changing default basePath, and a new MasterClass --> diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket284Component.php b/tests/FunctionalTests/tickets/protected/pages/Ticket284Component.php index 71f78269..c962850a 100755 --- a/tests/FunctionalTests/tickets/protected/pages/Ticket284Component.php +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket284Component.php @@ -1,5 +1,7 @@ <?php +Prado::using('System.Web.UI.IValidatable'); + class Ticket284Component extends TTemplateControl implements IValidatable { private $_isValid; |