Changeset 3024:b4724a397193 for admin
- Timestamp:
- 06/30/15 19:01:11 (10 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/category.php
r2891 r3024 179 179 dcPage::jsConfirmClose('category-form'). 180 180 dcPage::jsLoad('js/_category.js'). 181 $core->callBehavior('adminPostEditor',$category_editor['xhtml'],'category',array('#cat_desc') ),181 $core->callBehavior('adminPostEditor',$category_editor['xhtml'],'category',array('#cat_desc'),'xhtml'), 182 182 dcPage::breadcrumb($elements) 183 183 ); -
admin/comment.php
r2857 r3024 183 183 dcPage::jsConfirmClose('comment-form'). 184 184 dcPage::jsLoad('js/_comment.js'). 185 $core->callBehavior('adminPostEditor',$comment_editor['xhtml'],'comment',array('#comment_content') ).185 $core->callBehavior('adminPostEditor',$comment_editor['xhtml'],'comment',array('#comment_content'),'xhtml'). 186 186 # --BEHAVIOR-- adminCommentHeaders 187 187 $core->callBehavior('adminCommentHeaders'), -
admin/index.php
r2929 r3024 177 177 if ($post_editor && !empty($post_editor[$post_format])) { 178 178 // context is not post because of tags not available 179 $admin_post_behavior = $core->callBehavior('adminPostEditor', $post_editor[$post_format], 'quickentry', array('#post_content') );179 $admin_post_behavior = $core->callBehavior('adminPostEditor', $post_editor[$post_format], 'quickentry', array('#post_content'),$post_format); 180 180 } 181 181 } -
admin/post.php
r2974 r3024 385 385 if ($p_edit == $c_edit) { 386 386 $admin_post_behavior .= $core->callBehavior('adminPostEditor', 387 $p_edit,'post',array('#post_excerpt','#post_content','#comment_content') );387 $p_edit,'post',array('#post_excerpt','#post_content','#comment_content'),$post_format); 388 388 } else { 389 389 $admin_post_behavior .= $core->callBehavior('adminPostEditor', 390 $p_edit,'post',array('#post_excerpt','#post_content') );390 $p_edit,'post',array('#post_excerpt','#post_content'),$post_format); 391 391 $admin_post_behavior .= $core->callBehavior('adminPostEditor', 392 $c_edit,'comment',array('#comment_content') );392 $c_edit,'comment',array('#comment_content'),'xhtml'); 393 393 } 394 394 }
Note: See TracChangeset
for help on using the changeset viewer.