Error

[] operator not supported for strings

/homepages/15/d172418293/htdocs/project/lib/php/yii/yii-1.1.14.f0fee9/framework/vendors/TextHighlighter/Text/Highlighter/Renderer/Array.php(153)

141      */
142     function acceptToken($class, $content)
143     {
144 
145 
146         $theClass = $this->_getFullClassName($class);
147         if ($this->_htmlspecialchars) {
148             $content = htmlspecialchars($content);
149         }
150         if ($this->_enumerated) {
151             $this->_output[] = array($class, $content);
152         } else {
153             $this->_output[][$class] = $content;
154         }
155         $this->_lastClass = $class;
156 
157     }
158 
159 
160     /**
161      * Given a CSS class name, returns the class name
162      * with language name prepended, if necessary
163      *
164      * @access private
165      *

Stack Trace

#5
+
 /homepages/15/d172418293/htdocs/project/sandbox/www/protected/views/simpleWorkflow/demo/demo4.php(73): CBaseController->endWidget()
68         array(
69             'id' => 'D',
70             'label' => 'status D'
71         ),
72     )
73  );<?php $this->endWidget(); ?>                    
74                 </div>
75                 
76             </div>            
77              <div id="change_status">
78             <?php echo TbHtml::beginFormTb(TbHtml::FORM_LAYOUT_SEARCH,CHtml::normalizeUrl(array('demo4','modelId'=>$model->id)) ); ?>
#10
+
 /homepages/15/d172418293/htdocs/project/sandbox/www/protected/controllers/SimpleWorkflowController.php(140): CController->render()
135             if($model->validate())
136             {
137                 $model->save();
138             }
139         }
140         $this->render('demo/demo4',array('model'=>$model));
141     }
142     /**
143      *
144      */
145     public function actionDemo5($modelId=null)
#21
+
 /homepages/15/d172418293/htdocs/project/sandbox/www/index.php(15): CApplication->run()
10 defined('YII_DEBUG') or define('YII_DEBUG',true);
11 // specify how many levels of call stack should be shown in each log message
12 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
13 
14 require_once($yii);
15 Yii::createWebApplication($config)->run();
2024-03-28 17:59:26 Apache Yii Framework/1.1.14