Changes between Initial Version and Version 1 of Ticket #33326, comment 6
- Timestamp:
- 08/10/2015 09:01:14 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33326, comment 6
initial v1 1 1 33326.diff looks good. However, why do we have `if ( function_exists( 'get_blog_option' ) )` at the top of `get_site_icon_url()`? Shouldn't that be `is_multisite()`? 2 2 3 Generally `function_exists()` is slow, we don't want it running on every front-end page load .3 Generally `function_exists()` is slow, we don't want it running on every front-end page load if possible.