diff options
author | carlgmathisen <> | 2008-11-24 23:33:54 +0000 |
---|---|---|
committer | carlgmathisen <> | 2008-11-24 23:33:54 +0000 |
commit | ff0e50b850d4557616bb904fe8ca55b6559661e8 (patch) | |
tree | ccb563f3f97fc26a97270e5187ed85484a17291b | |
parent | 3a65efc7a28e5a1513301fcf2948f873db41039b (diff) |
TActiveLinkButton crashes
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | framework/Web/UI/ActiveControls/TActiveLinkButton.php | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -3,6 +3,7 @@ Version 3.1.4 To be released BUG: Issue#59 - TPropertyAccess::has() returns false even if the property of an object was found (Carl) BUG: Issue#61 - TLogRouter throws exception when using external config file (Michael) BUG: Issue#62 - Some mistyping: TJavascript or TJavaScript? (Carl) +BUG: TActiveLinkButton crashes if it's the only active control imported. Added TActiveControlAdapter (Carl) ENH: Issue#36 - Refactored TRatingList/TActiveRatingList, and added some docs (Bradley) ENH: Issue#52 - Upgraded to TinyMCE 3.2.1 NEW: Issue#51 - Additional template tag (Carl) diff --git a/framework/Web/UI/ActiveControls/TActiveLinkButton.php b/framework/Web/UI/ActiveControls/TActiveLinkButton.php index 5a863a9d..f1551b40 100644 --- a/framework/Web/UI/ActiveControls/TActiveLinkButton.php +++ b/framework/Web/UI/ActiveControls/TActiveLinkButton.php @@ -11,6 +11,11 @@ */ /** + * Load active control adapter. + */ +Prado::using('System.Web.UI.ActiveControls.TActiveControlAdapter'); + +/** * TActiveLinkButton is the active control counter part to TLinkButton. * * When a TActiveLinkButton is clicked, rather than a normal post back request a |