diff options
author | wei <> | 2007-05-08 03:05:45 +0000 |
---|---|---|
committer | wei <> | 2007-05-08 03:05:45 +0000 |
commit | 9dfaab8227dc5643fac72b8aaece36df47fd3631 (patch) | |
tree | 826c7f8ccb5a3636c1bdc290415fa145d0dc9a0b | |
parent | 0ee23d595c73a94fd61e486cce2f6f42b4c19fdf (diff) |
#591 already fixed.
-rw-r--r-- | .gitattributes | 2 | ||||
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket591.page | 11 | ||||
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Ticket591.php | 9 |
3 files changed, 22 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index bd7b1341..91bc4e4f 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2567,6 +2567,8 @@ tests/FunctionalTests/tickets/protected/pages/Ticket587.page -text tests/FunctionalTests/tickets/protected/pages/Ticket587.php -text tests/FunctionalTests/tickets/protected/pages/Ticket587_reopened.page -text tests/FunctionalTests/tickets/protected/pages/Ticket587_reopened.php -text +tests/FunctionalTests/tickets/protected/pages/Ticket591.page -text +tests/FunctionalTests/tickets/protected/pages/Ticket591.php -text tests/FunctionalTests/tickets/protected/pages/Ticket605.page -text tests/FunctionalTests/tickets/protected/pages/Ticket606.page -text tests/FunctionalTests/tickets/protected/pages/Ticket614.page -text diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket591.page b/tests/FunctionalTests/tickets/protected/pages/Ticket591.page new file mode 100644 index 00000000..2f2fef85 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket591.page @@ -0,0 +1,11 @@ +<com:TContent ID="Content">
+
+<com:TActiveRatingList Rating="3" ReadOnly="false">
+<com:TListItem Value="1" Text="1" />
+<com:TListItem Value="2" Text="2" />
+<com:TListItem Value="3" Text="3" />
+<com:TListItem Value="4" Text="4" />
+<com:TListItem Value="5" Text="5" />
+</com:TActiveRatingList>
+
+</com:TContent>
\ No newline at end of file diff --git a/tests/FunctionalTests/tickets/protected/pages/Ticket591.php b/tests/FunctionalTests/tickets/protected/pages/Ticket591.php new file mode 100644 index 00000000..9e49e835 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/Ticket591.php @@ -0,0 +1,9 @@ +<?php
+
+Prado::using('System.Web.UI.ActiveControls.*');
+
+class Ticket591 extends TPage
+{
+}
+
+?>
\ No newline at end of file |