diff options
author | xue <> | 2006-03-09 02:18:49 +0000 |
---|---|---|
committer | xue <> | 2006-03-09 02:18:49 +0000 |
commit | 36b52fa8ecbcd3b1559a1f49cbfdb4bf413e2773 (patch) | |
tree | 4209096a817a434f34710ee1e7a56f6c04067933 /framework/Web/UI/WebControls/TTextBox.php | |
parent | dfc35208915df9d4c054113a6a3fba86d72c4db1 (diff) |
Many small fixes due to the result of zend analyzer.
Diffstat (limited to 'framework/Web/UI/WebControls/TTextBox.php')
-rw-r--r-- | framework/Web/UI/WebControls/TTextBox.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/Web/UI/WebControls/TTextBox.php b/framework/Web/UI/WebControls/TTextBox.php index b91a72ef..7d1b9cba 100644 --- a/framework/Web/UI/WebControls/TTextBox.php +++ b/framework/Web/UI/WebControls/TTextBox.php @@ -120,9 +120,9 @@ class TTextBox extends TWebControl implements IPostBackDataHandler, IValidatable $writer->addAttribute('vcard_name','BusinessCountry');
else
{
- if(($pos=strpos($act,'Business'))===0)
+ if(strpos($act,'Business')===0)
$act='Business'.'.'.substr($act,8);
- else if(($pos=strpos($act,'Home'))===0)
+ else if(strpos($act,'Home')===0)
$act='Home'.'.'.substr($act,4);
$writer->addAttribute('vcard_name','vCard.'.$act);
}
|