1
0

New Blogpost and made BlogPost/ControllerID non-required

This commit is contained in:
Mike Schwörer 2014-11-06 10:12:41 +01:00
parent 371d881436
commit 5bd4ce2185
4 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

View File

@ -167,7 +167,7 @@ class BlogPostController extends MSController
); );
} }
public function actionAjaxMarkdownPreview() public function actionAjaxMarkdownPreview() //TODO-MS: BUG !! Can't preview/create blogposts that contain links (only on server ??)
{ {
if(Yii::app()->request->isAjaxRequest) if(Yii::app()->request->isAjaxRequest)
{ {

View File

@ -30,7 +30,7 @@ class BlogPost extends CActiveRecord
// NOTE: you should only define rules for those attributes that // NOTE: you should only define rules for those attributes that
// will receive user inputs. // will receive user inputs.
return array( return array(
array('Date, Title, Content, ControllerID, Visible, Enabled', 'required'), array('Date, Title, Content, Visible, Enabled', 'required'),
array('Visible, Enabled', 'numerical', 'integerOnly'=>true), array('Visible, Enabled', 'numerical', 'integerOnly'=>true),
array('ID, Date, Title, Content, ControllerID, Visible, Enabled', 'safe', 'on'=>'search'), array('ID, Date, Title, Content, ControllerID, Visible, Enabled', 'safe', 'on'=>'search'),