Changeset 395
- Timestamp:
- 02/11/2014 11:01:26 PM (11 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/TODO.txt
r393 r395 1 1 High priority: 2 default image so organizers know it's an option 2 3 refactor get_contact_form_shortcode() once https://github.com/Automattic/jetpack/issues/102 is fixed 3 4 if doesn't happen soon, then add admin notice if missing page w/ contact form or it's not published -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
r394 r395 20 20 public function init() { 21 21 $settings = $GLOBALS['WCCSP_Settings']->get_settings(); 22 $this->override_theme_template = 'on' == $settings['enabled'] && ! is_user_logged_in();22 $this->override_theme_template = 'on' == $settings['enabled'] && ! current_user_can( 'edit_posts' ); 23 23 } 24 24
Note: See TracChangeset
for help on using the changeset viewer.