Closed GeoJunkie closed 3 months ago
Fixes #93
Writes options to the database using $wpdb->update to prevent unexpected actions being triggered from running update_option(). (Like sending an email to admins when the admin_email option is updated.
$wpdb->update
update_option()
admin_email
Fixes #93
Writes options to the database using
$wpdb->update
to prevent unexpected actions being triggered from runningupdate_option()
. (Like sending an email to admins when theadmin_email
option is updated.