IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
1545 | 1545 | * Filters the list of rewrite rules formatted for output to an .htaccess file. |
1546 | 1546 | * |
1547 | 1547 | * @since 1.5.0 |
| 1548 | * @since 5.0.0 Introduced the `$site_root` and `$home_root` parameter. |
1548 | 1549 | * |
1549 | 1550 | * @param string $rules mod_rewrite Rewrite rules formatted for .htaccess. |
| 1551 | * @param string $home_root Home root |
| 1552 | * @param string $site_root Site root |
1550 | 1553 | */ |
1551 | | $rules = apply_filters( 'mod_rewrite_rules', $rules ); |
| 1554 | $rules = apply_filters( 'mod_rewrite_rules', $rules, $home_root, $site_root ); |
1552 | 1555 | |
1553 | 1556 | /** |
1554 | 1557 | * Filters the list of rewrite rules formatted for output to an .htaccess file. |