here's the rest:
php: 5.3.8
OSX 10.7.3
mysql: mysqlnd 5.0.8-dev - 20102224
yii: 1.10
Need anything else
Stack Trace
#0
+ /Users/USR1/Sites/bugitor/yii/framework/web/CBaseController.php(119): require("/Users/USR1/Sites/bugitor/themes/new/views/issue/_form.php")
#1
+ /Users/USR1/Sites/bugitor/yii/framework/web/CBaseController.php(88): CBaseController->renderInternal("/Users/USR1/Sites/bugitor/themes/new/views/issue/_form.php", array("model" => Issue), true)
#2
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(866): CBaseController->renderFile("/Users/USR1/Sites/bugitor/themes/new/views/issue/_form.php", array("model" => Issue), true)
#3
– /Users/USR1/Sites/bugitor/themes/new/views/issue/create.php(38): CController->renderPartial("_form", array("model" => Issue))
33 ?>
34 <?php
35 $this->pageTitle = $project_name . 'New Issue - ' . Yii::app()->name ;
36 ?>
37 <h3 class="issues-icon">New Issue</h3>
38 <?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
#4
+ /Users/USR1/Sites/bugitor/yii/framework/web/CBaseController.php(119): require("/Users/USR1/Sites/bugitor/themes/new/views/issue/create.php")
#5
+ /Users/USR1/Sites/bugitor/yii/framework/web/CBaseController.php(88): CBaseController->renderInternal("/Users/USR1/Sites/bugitor/themes/new/views/issue/create.php", array("model" => Issue, "project_name" => "test - "), true)
#6
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(866): CBaseController->renderFile("/Users/USR1/Sites/bugitor/themes/new/views/issue/create.php", array("model" => Issue, "project_name" => "test - "), true)
#7
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(779): CController->renderPartial("create", array("model" => Issue, "project_name" => "test - "), true)
#8
– /Users/USR1/Sites/bugitor/protected/components/BugitorController.php(47): CController->render("create", array("model" => Issue, "project_name" => "test - "), false)
42
43 public function render($view, $data = null, $return = false)
44 {
45 if ($this->beforeRender($view))
46 {
47 parent::render($view, $data, $return);
48 }
49 }
50
51 public function beforeRender($view)
52 {
#9
– /Users/USR1/Sites/bugitor/protected/controllers/IssueController.php(330): BugitorController->render("create", array("model" => Issue, "project_name" => "test - "))
325 }
326
327 $this->render('create', array(
328 'model' => $model,
329 'project_name' => $project_name,
330 ));
331 }
332
333 public function actionMove($id) {
334 $model = Issue::model()->with(array('project', 'tracker'))->findByPk((int) $id);
335 $_GET['projectname'] = $model->project->name;
#10
+ /Users/USR1/Sites/bugitor/yii/framework/web/actions/CInlineAction.php(50): IssueController->actionCreate()
#11
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(300): CInlineAction->runWithParams(array("identifier" => "test"))
#12
+ /Users/USR1/Sites/bugitor/yii/framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction)
#13
+ /Users/USR1/Sites/bugitor/yii/framework/web/filters/CFilter.php(41): CFilterChain->run()
#14
+ /Users/USR1/Sites/bugitor/protected/modules/rights/components/RController.php(36): CFilter->filter(CFilterChain)
#15
+ /Users/USR1/Sites/bugitor/yii/framework/web/filters/CInlineFilter.php(59): RController->filterRights(CFilterChain)
#16
+ /Users/USR1/Sites/bugitor/yii/framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain)
#17
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(283): CFilterChain->run()
#18
+ /Users/USR1/Sites/bugitor/yii/framework/web/CController.php(257): CController->runActionWithFilters(CInlineAction, array("rights"))
#19
+ /Users/USR1/Sites/bugitor/yii/framework/web/CWebApplication.php(277): CController->run("create")
#20
+ /Users/USR1/Sites/bugitor/yii/framework/web/CWebApplication.php(136): CWebApplication->runController("issue/create")
#21
+ /Users/USR1/Sites/bugitor/yii/framework/base/CApplication.php(158): CWebApplication->processRequest()
#22
+ /Users/USR1/Sites/bugitor/index.php(86): CApplication->run()