diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2015-12-07 15:57:51 +0100 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2015-12-07 15:57:51 +0100 |
commit | 654a9cae43358c7eecf3b522e9876aa7815e2453 (patch) | |
tree | 545f2e42fdc6e824b247924adf083ad3fe51e61d /tests/FunctionalTests/active-controls/protected/pages | |
parent | e99e35819d53dc48ae4e9a8491528a6b6011469f (diff) |
Move urls from pradosoft.com to github's project page; drop unmaintained quickstart tutorial translations
Diffstat (limited to 'tests/FunctionalTests/active-controls/protected/pages')
-rwxr-xr-x | tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page | 2 | ||||
-rwxr-xr-x | tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page index 9b149b45..b2aefc3b 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.page @@ -2,7 +2,7 @@ <h1>Active HyperLink Test Case</h1> <div style="margin:1em; padding:1em; border:1px solid #ccc; text-align:center;"> - <com:TActiveHyperLink ID="link1" Text="Link 1" NavigateUrl="http://www.pradosoft.com" /> + <com:TActiveHyperLink ID="link1" Text="Link 1" NavigateUrl="https://github.com/pradosoft/prado" /> </div> <com:TActiveButton ID="button1" Text="Change Text" OnClick="change_text" /> <com:TActiveButton ID="button2" Text="Change Image" OnClick="change_image" /> diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php index ef3f597e..5ccf2e70 100755 --- a/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveHyperLinkTest.php @@ -4,7 +4,7 @@ class ActiveHyperLinkTest extends TPage { function change_text() { - $this->link1->Text = "Pradosoft.com"; + $this->link1->Text = "Prado framework"; } function change_image() @@ -19,6 +19,6 @@ class ActiveHyperLinkTest extends TPage function change_url() { - $this->link1->NavigateUrl = "http://www.xlab6.com"; + $this->link1->NavigateUrl = "http://www.google.com"; } } |