Title: Undefined property: stdClass::$user_email
Last modified: August 7, 2026

---

# Undefined property: stdClass::$user_email

 *  [babola](https://wordpress.org/support/users/babola/)
 * (@babola)
 * [4 days, 5 hours ago](https://wordpress.org/support/topic/undefined-property-stdclassuser_email/)
 * I have Photo Gallery Version 1.8.42 installed, which I believe is the latest 
   version. I am seeing PHP Warnings like this in a log file:
 * [07-Aug-2026 03:32:03 UTC] PHP Warning:  Undefined property: stdClass::$user_email
   in /var/www/sites/XXXXX/wp-content/plugins/photo-gallery/wd/includes/deactivate.
   php on line 69
 * [07-Aug-2026 07:10:44 UTC] PHP Warning:  Undefined property: stdClass::$user_email
   in /var/www/sites/XXXXX/wp-content/plugins/photo-gallery/wd/includes/deactivate.
   php on line 69

Viewing 1 replies (of 1 total)

 *  Thread Starter [babola](https://wordpress.org/support/users/babola/)
 * (@babola)
 * [4 days, 5 hours ago](https://wordpress.org/support/topic/undefined-property-stdclassuser_email/#post-18987540)
 * Regarding the problem on line 69 of deactivate.php…
 * `"email" => $admin_data->data->user_email,`
 * .… the scripts() function is enqueued on admin pages and wp_get_current_user()
   returns a bare stdClass with no user_email when no user is logged in. The fix
   is a simple null coalescing guard:
 * `"email" => $admin_data->data->user_email ?? "",`
    -  This reply was modified 4 days, 4 hours ago by [babola](https://wordpress.org/support/users/babola/).

Viewing 1 replies (of 1 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fundefined-property-stdclassuser_email%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/photo-gallery/assets/icon-256x256.png?rev=2068745)
 * [Photo Gallery by 10Web - Mobile-Friendly Image Gallery](https://wordpress.org/plugins/photo-gallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/photo-gallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/photo-gallery/)
 * [Active Topics](https://wordpress.org/support/plugin/photo-gallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/photo-gallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/photo-gallery/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [babola](https://wordpress.org/support/users/babola/)
 * Last activity: [4 days, 5 hours ago](https://wordpress.org/support/topic/undefined-property-stdclassuser_email/#post-18987540)
 * Status: not resolved