Changeset 2135:35a0194cdafa for admin/posts.php
- Timestamp:
- 09/27/13 20:16:29 (12 years ago)
- Branch:
- Ticket #1548
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/posts.php
r2134 r2135 212 212 /* DISPLAY 213 213 -------------------------------------------------------- */ 214 215 dcPage::open(__('Entries'), 216 dcPage::jsLoad('js/_posts_list.js'). 217 dcPage::jsLoad('js/filter-controls.js'). 214 $starting_script = dcPage::jsLoad('js/_posts_list.js'); 215 $starting_script .= dcPage::jsLoad('js/filter-controls.js'); 216 $starting_script .= 218 217 '<script type="text/javascript">'."\n". 219 218 "//<![CDATA["."\n". 220 219 dcPage::jsVar('dotclear.msg.show_filters', $show_filters ? 'true':'false')."\n". 221 dcPage::jsVar('dotclear.msg.filter_posts_list', __('Filter posts list'))."\n".220 dcPage::jsVar('dotclear.msg.filter_posts_list',$form_filter_title)."\n". 222 221 dcPage::jsVar('dotclear.msg.cancel_the_filter',__('Cancel the filter'))."\n". 223 222 "//]]>". 224 "</script>", 223 "</script>"; 224 225 $form_filter_title = __('Filter users list and display options'); 226 227 dcPage::open(__('Entries'),$starting_script, 225 228 dcPage::breadcrumb( 226 229 array( … … 239 242 '<p class="top-add"><a class="button add" href="post.php">'.__('New entry').'</a></p>'. 240 243 '<form action="posts.php" method="get" id="filters-form">'. 241 '<h3 class="out-of-screen-if-js">'. __('Filters and display options').'</h3>'.244 '<h3 class="out-of-screen-if-js">'.$form_filter_title.'</h3>'. 242 245 243 246 '<div class="table">'.
Note: See TracChangeset
for help on using the changeset viewer.