Title: PHP Notice: Undefined offset
Last modified: August 22, 2016

---

# PHP Notice: Undefined offset

 *  [Baden](https://wordpress.org/support/users/baden03/)
 * (@baden03)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/php-notice-undefined-offset-2/)
 * Error:
 *     ```
       Notice: Undefined offset: 4 in wp-content/plugins/reorder-post-within-categories/reorder-posts-within-categories.php on line 84
   
       Notice: Undefined offset: 4 in wp-content/plugins/reorder-post-within-categories/reorder-posts-within-categories.php on line 131
   
       Notice: Undefined offset: 4 in wp-content/plugins/reorder-post-within-categories/reorder-posts-within-categories.php on line 107
       ```
   
 * Problem:
 *     ```
       if($userOrderOptionSetting[$theID] == "true" && $this->stop_join == false){...}
       ```
   
 * Fix:
 *     ```
       if(!empty($userOrderOptionSetting[$theID]) && $userOrderOptionSetting[$theID] == "true" && $this->stop_join == false){...}
       ```
   
 * [https://wordpress.org/plugins/reorder-post-within-categories/](https://wordpress.org/plugins/reorder-post-within-categories/)

Viewing 1 replies (of 1 total)

 *  [bitmatix](https://wordpress.org/support/users/bitmatix/)
 * (@bitmatix)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/php-notice-undefined-offset-2/#post-5467099)
 * No reaction since 4 months???
 * Please fix the mentioned errors/notices!!!

Viewing 1 replies (of 1 total)

The topic ‘PHP Notice: Undefined offset’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/reorder-post-within-categories_c18d38.
   svg)
 * [ReOrder Posts within Categories](https://wordpress.org/plugins/reorder-post-within-categories/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/reorder-post-within-categories/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/reorder-post-within-categories/)
 * [Active Topics](https://wordpress.org/support/plugin/reorder-post-within-categories/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/reorder-post-within-categories/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/reorder-post-within-categories/reviews/)

## Tags

 * [notice](https://wordpress.org/support/topic-tag/notice/)
 * [php](https://wordpress.org/support/topic-tag/php/)

 * 1 reply
 * 2 participants
 * Last reply from: [bitmatix](https://wordpress.org/support/users/bitmatix/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/php-notice-undefined-offset-2/#post-5467099)
 * Status: not resolved