diff options
author | ctrlaltca <> | 2012-06-25 14:46:04 +0000 |
---|---|---|
committer | ctrlaltca <> | 2012-06-25 14:46:04 +0000 |
commit | 860468d56be2618e372c4c5655d5322352de530e (patch) | |
tree | 14849fd937a311a896b6005ea2ea96ad21eab75a /demos/quickstart/protected/pages/Controls | |
parent | 4f7930e4f76eed1895128f3bb70f6293db85b269 (diff) |
fixed TConditional example
Diffstat (limited to 'demos/quickstart/protected/pages/Controls')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page index e7c6b24a..50f7bbb4 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TConditional/Home.page @@ -1,9 +1,9 @@ <com:TContent ID="body">
<h1>TConditional Samples</h1>
-<com:TConditional Condition="Prado::getVersion()==='3.1.1'">
+<com:TConditional Condition="Prado::getVersion()==='3.2.0'">
<prop:TrueTemplate>
- <com:TLabel Text="You are using PRADO 3.1.1" />
+ <com:TLabel Text="You are using PRADO 3.2.0" />
</prop:TrueTemplate>
<prop:FalseTemplate>
<com:TLabel Text="You are using PRADO <%= Prado::getVersion() %>" />
|