Changeset 8525 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
- Timestamp:
- 03/25/2019 10:24:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php
r8466 r8525 170 170 $url = ''; 171 171 172 // Exceptions for externally-linked elements. 173 $exceptions = [ 174 'error_log()' => 'https://secure.php.net/manual/en/function.error-log.php', 175 ]; 176 177 // Link exceptions that should actually point to external resources. 178 if ( ! empty( $exceptions[ $link ] ) ) { 179 $url = $exceptions[ $link ]; 180 } 181 172 182 // Link to class variable: {@see WP_Rewrite::$index} 173 if ( false !== strpos( $link, '::$' ) ) {183 elseif ( false !== strpos( $link, '::$' ) ) { 174 184 // Nothing to link to currently. 175 185 }
Note: See TracChangeset
for help on using the changeset viewer.