diff options
author | David <ottodavid@gmx.net> | 2015-08-08 17:50:21 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-08-08 21:11:10 +0200 |
commit | fac491977897c1caba81e01cf6af2d195139ad97 (patch) | |
tree | b3cd1ac3bdf605d8cbce70c668b27811cc545368 /tests | |
parent | b46b4e7acb00715982a8d3543fb22f5ac64c88fe (diff) |
added missing Prado::using
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/FunctionalTests/tickets/protected/application.xml | 2 | ||||
-rwxr-xr-x | tests/FunctionalTests/tickets/protected/pages/Ticket284Component.php | 2 |
2 files changed, 3 insertions, 1 deletions
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; |