Changeset 3550:8ba8214553a2
- Timestamp:
- 06/30/17 16:04:03 (8 years ago)
- Branch:
- default
- Children:
- 3551:e22eab0d16b1, 3569:023a33f84af7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/post.php
r3491 r3550 460 460 461 461 # --BEHAVIOR-- adminPostNavLinks 462 $core->callBehavior('adminPostNavLinks',isset($post) ? $post : null );462 $core->callBehavior('adminPostNavLinks',isset($post) ? $post : null,'post'); 463 463 464 464 echo '</p>'; … … 673 673 674 674 # --BEHAVIOR-- adminPostFormItems 675 $core->callBehavior('adminPostFormItems',$main_items,$sidebar_items, isset($post) ? $post : null);675 $core->callBehavior('adminPostFormItems',$main_items,$sidebar_items,isset($post) ? $post : null,'post'); 676 676 677 677 echo '<div class="multi-part" title="'.($post_id ? __('Edit entry') : __('New entry')). … … 688 688 689 689 # --BEHAVIOR-- adminPostForm (may be deprecated) 690 $core->callBehavior('adminPostForm',isset($post) ? $post : null );690 $core->callBehavior('adminPostForm',isset($post) ? $post : null,'post'); 691 691 692 692 echo … … 727 727 728 728 # --BEHAVIOR-- adminPostFormSidebar (may be deprecated) 729 $core->callBehavior('adminPostFormSidebar',isset($post) ? $post : null );729 $core->callBehavior('adminPostFormSidebar',isset($post) ? $post : null,'post'); 730 730 echo '</div>'; // End #entry-sidebar 731 731 … … 733 733 734 734 # --BEHAVIOR-- adminPostForm 735 $core->callBehavior('adminPostAfterForm',isset($post) ? $post : null );735 $core->callBehavior('adminPostAfterForm',isset($post) ? $post : null,'post'); 736 736 737 737 echo '</div>';
Note: See TracChangeset
for help on using the changeset viewer.