PHP warning

"continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?

/home/cavitech/public_html/framework/vendors/htmlpurifier/HTMLPurifier.standalone.php(11973)

11961                     $tag_index = 0;
11962                     continue;
11963                 }
11964                 switch($token->name) {
11965                     case 'caption':
11966                     case 'colgroup':
11967                     case 'thead':
11968                     case 'tfoot':
11969                     case 'tbody':
11970                     case 'tr':
11971                         $is_collecting = true;
11972                         $collection[] = $token;
11973                         continue;
11974                     default:
11975                         if (!empty($token->is_whitespace)) {
11976                             $collection[] = $token;
11977                             $tag_index++;
11978                         }
11979                         continue;
11980                 }
11981             }
11982         }
11983 
11984         if (empty($content)) return false;
11985 

Stack Trace

#9
+
 /home/cavitech/public_html/protected/modules/article/views/post/view.php(23): CBaseController->endWidget()
18         </div>        
19         <div class="content_f">                    
20             <?php
21             $this->beginWidget('CMarkdown', array('purifyOutput' => true));
22             echo $data->content;
23             $this->endWidget();
24             ?>
25         </div>
26         <div class="nav">
27             <?php
28             /* $this->widget('SimpleShare', array(
#14
+
 /home/cavitech/public_html/protected/modules/article/controllers/PostController.php(71): CController->render("view", array("model" => Post, "translated" => true))
66         Yii::app()->clientScript->registerMetaTag($post->tags, 'keywords');
67         Yii::app()->clientScript->registerMetaTag(extra::getIntro($post->content, 140), 'content');
68 
69         $this->render('view', array(
70             'model' => $post,
71             'translated' => $translated
72         ));
73     }
74 
75     /**
76      * Creates a new model.
#27
+
 /home/cavitech/public_html/index.php(13): CApplication->run()
08 defined('YII_DEBUG') or define('YII_DEBUG',true);
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 
12 require_once($yii);
13 Yii::createWebApplication($config)->run();
2024-03-28 19:45:00 Apache Yii Framework/1.1.10