summaryrefslogtreecommitdiff
path: root/framework/Web/UI
diff options
context:
space:
mode:
authorknut <>2006-02-25 13:11:07 +0000
committerknut <>2006-02-25 13:11:07 +0000
commit5cd7be1e0849edcb1ecea652e1f6531bcf0a7402 (patch)
tree31d75e652b10b67f414f0dff8c6b2067dfd2254d /framework/Web/UI
parent4ae95cf1e50ab37ccf3ba95a8776573bcf77319a (diff)
Corrected some weird blank character at this comment line which caused the StripPhpComments filter in Phing to fail
Diffstat (limited to 'framework/Web/UI')
-rw-r--r--framework/Web/UI/TClientScriptManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php
index 17d680c3..eb7571ff 100644
--- a/framework/Web/UI/TClientScriptManager.php
+++ b/framework/Web/UI/TClientScriptManager.php
@@ -282,7 +282,7 @@ class TClientScriptManager extends TApplicationComponent
*/
public function registerHiddenField($name,$value)
{
- // if the named hidden field exists and has a value null, it means the hidden field is rendered already
+ // if the named hidden field exists and has a value null, it means the hidden field is rendered already
if(!isset($this->_hiddenFields[$name]) || $this->_hiddenFields[$name]!==null)
$this->_hiddenFields[$name]=$value;
}