CRM_Utils_System_WordPress - Drop unused variable
authorTim Otten <totten@civicrm.org>
Wed, 7 Dec 2022 22:39:42 +0000 (14:39 -0800)
committerTim Otten <totten@civicrm.org>
Wed, 7 Dec 2022 22:39:42 +0000 (14:39 -0800)
commit27b7a01c8a7d2301867b9d82214a25d55ec695bb
treeb87745aaa46b95850d6df4bacaab4e271f88f9a8
parent0582fe3e2ba639aba611fbd9ef5bb6fc9255f03b
CRM_Utils_System_WordPress - Drop unused variable

This is an off-shoot from #24911.

Before
------

`WordPress` implements the method `mapConfigToSSL()`, but ti doesn't do anything.

To see this, you can search for 'base_url' across the entire-source of a Civi-WP installation.
Specifically, I used

```
grep -lri 'global.*base_url'
```

The references appeared unrelated -- some references to Drupal/Backdrop adapters, and
some references to minified JS files. But I couldn't see anything that would in PHP on WP.

After
-----

Don't bother implementing the method. Might as well inherit the base method (which is empty).
CRM/Utils/System/WordPress.php