IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
1527 | 1527 | * Filter the list of rewrite rules formatted for output to an .htaccess file. |
1528 | 1528 | * |
1529 | 1529 | * @since 1.5.0 |
| 1530 | * @since 4.4.0 Introduced the `$site_root` and `$home_root` parameter. |
1530 | 1531 | * |
1531 | 1532 | * @param string $rules mod_rewrite Rewrite rules formatted for .htaccess. |
| 1533 | * @param string $home_root Home root |
| 1534 | * @param string $site_root Site root |
1532 | 1535 | */ |
1533 | | $rules = apply_filters( 'mod_rewrite_rules', $rules ); |
| 1536 | $rules = apply_filters( 'mod_rewrite_rules', $rules, $home_root, $site_root ); |
1534 | 1537 | |
1535 | 1538 | /** |
1536 | 1539 | * Filter the list of rewrite rules formatted for output to an .htaccess file. |