diff options
author | xue <> | 2006-01-03 00:15:59 +0000 |
---|---|---|
committer | xue <> | 2006-01-03 00:15:59 +0000 |
commit | 551cdfb76ddde47198106839747df9c1ef74e4fe (patch) | |
tree | ca519da9565df93e79a312c019801cb8aec5500c /framework/Web/UI/WebControls/TLinkButton.php | |
parent | 4d8ed423f7b4a8eae2898cc5552829595717a581 (diff) |
Added TBulletedList and its demos.
Diffstat (limited to 'framework/Web/UI/WebControls/TLinkButton.php')
-rw-r--r-- | framework/Web/UI/WebControls/TLinkButton.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/WebControls/TLinkButton.php b/framework/Web/UI/WebControls/TLinkButton.php index d3518ee4..16d670b3 100644 --- a/framework/Web/UI/WebControls/TLinkButton.php +++ b/framework/Web/UI/WebControls/TLinkButton.php @@ -86,7 +86,7 @@ class TLinkButton extends TWebControl implements IPostBackEventHandler {
$url = $this->getPostBackUrl();
//create unique no-op url references
- $nop = "javascript:;//{$this->ClientID}";
+ $nop = "javascript:;//".$this->getClientID();
$writer->addAttribute('href', $url ? $url : $nop);
$scripts = $this->getPage()->getClientScript();
|