From 817cbc175a35df506ade6d5a72662b7113b563b4 Mon Sep 17 00:00:00 2001 From: Kartik Visweswaran Date: Thu, 21 Nov 2013 15:42:52 +0530 Subject: [PATCH] Comments cleanup. Cleaned up a few comments ... hope its not my OCD again... :-) --- apps/advanced/frontend/widgets/Alert.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/advanced/frontend/widgets/Alert.php b/apps/advanced/frontend/widgets/Alert.php index d1546ef..e070e1b 100644 --- a/apps/advanced/frontend/widgets/Alert.php +++ b/apps/advanced/frontend/widgets/Alert.php @@ -48,10 +48,10 @@ class Alert extends \yii\bootstrap\Widget $appendCss = isset($this->options['class']) ? ' ' . $this->options['class'] : ''; foreach ($flashes as $type => $message) { - /* initialize css class for each alert box in loop */ + /* initialize css class for each alert box */ $this->options['class'] = 'alert-' . $this->alertTypes[$type] . $appendCss; - /* assign unique id to each alert box in the loop */ + /* assign unique id to each alert box */ $this->options['id'] = $this->getId() . '-' . $type; echo \yii\bootstrap\Alert::widget([