From 36b52fa8ecbcd3b1559a1f49cbfdb4bf413e2773 Mon Sep 17 00:00:00 2001 From: xue <> Date: Thu, 9 Mar 2006 02:18:49 +0000 Subject: Many small fixes due to the result of zend analyzer. --- framework/Web/UI/WebControls/TValidationSummary.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'framework/Web/UI/WebControls/TValidationSummary.php') diff --git a/framework/Web/UI/WebControls/TValidationSummary.php b/framework/Web/UI/WebControls/TValidationSummary.php index 41362264..437e10d6 100644 --- a/framework/Web/UI/WebControls/TValidationSummary.php +++ b/framework/Web/UI/WebControls/TValidationSummary.php @@ -275,14 +275,14 @@ class TValidationSummary extends TWebControl switch($this->getDisplayMode()) { case 'List': - $content = $this->renderList($writer); + $this->renderList($writer); break; case 'SingleParagraph': - $content = $this->renderSingleParagraph($writer); + $this->renderSingleParagraph($writer); break; case 'BulletList': - default: - $content = $this->renderBulletList($writer); + $this->renderBulletList($writer); + break; } } } -- cgit v1.2.3