IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
diff --git a/src/bp-core/admin/bp-core-admin-tools.php b/src/bp-core/admin/bp-core-admin-tools.php
a
|
b
|
|
144 | 144 | 'bp_admin_repair_blog_records', |
145 | 145 | ); |
146 | 146 | |
147 | | if ( bp_is_active( 'blogs', 'site-icon' ) ) { |
| 147 | if ( is_multisite() && bp_is_active( 'blogs', 'site-icon' ) ) { |
148 | 148 | $repair_list[91] = array( |
149 | 149 | 'bp-blog-site-icons', |
150 | 150 | __( 'Repair site tracking site icons/blog avatars synchronization.', 'buddypress' ), |
… |
… |
|
332 | 332 | /* translators: %s: the result of the action performed by the repair tool */ |
333 | 333 | $statement = __( 'Repairing site icons/blog avatars synchronization… %s', 'buddypress' ); |
334 | 334 | |
| 335 | if ( ! is_multisite() ) { |
| 336 | return array( 0, sprintf( $statement, __( 'Failed!', 'buddypress' ) ) ); |
| 337 | } |
| 338 | |
335 | 339 | // Run function if blogs component is active. |
336 | 340 | if ( bp_is_active( 'blogs', 'site-icon' ) ) { |
337 | 341 | $blog_ids = get_sites( |