Changeset 2148
- Timestamp:
- 11/30/2015 10:02:46 PM (10 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-remote-css
- Files:
-
- 2 edited
-
app/user-interface.php (modified) (2 diffs)
-
views/page-remote-css.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-remote-css/app/user-interface.php
r2146 r2148 35 35 $notice_class = 'notice-success'; 36 36 } catch( \Exception $exception ) { 37 $notice = $exception->getMessage();38 $notice_class = 'notice-error';37 $notice = $exception->getMessage(); 38 $notice_class = 'notice-error'; 39 39 } 40 40 } … … 206 206 } 207 207 208 $parsed_url = parse_url( $remote_css_url );208 $parsed_url = parse_url( $remote_css_url ); 209 209 210 210 /* -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-remote-css/views/page-remote-css.php
r2124 r2148 41 41 <div id="message" class="notice <?php echo esc_attr( $notice_class ); ?> is-dismissible"> 42 42 <?php 43 /*43 /* 44 44 * Typically KSES is discouraged when displaying text because it's expensive, but in this case 45 45 * it's appropriate because the underlying layers need to pass HTML-formatted error messages, and
Note: See TracChangeset
for help on using the changeset viewer.