Title: WordPress 3.6.1 update
Last modified: August 21, 2016

---

# WordPress 3.6.1 update

 *  [roelernl](https://wordpress.org/support/users/roelernl/)
 * (@roelernl)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/wordpress-361-update/)
 * After the update the plugin suddenly gives error codes! Is there anyway to fix
   this? I love this plugin and I can’t miss it 🙂
 * [http://wordpress.org/plugins/quote-source/](http://wordpress.org/plugins/quote-source/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [mikebronner](https://wordpress.org/support/users/mikebronner/)
 * (@mikebronner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-361-update/#post-4152309)
 * I’m in the same boat, getting errors such as:
 * Warning: Illegal string offset ‘quote1’ in […]/plugins/quote-source/quote-source.
   php on line 110
 *  [mikebronner](https://wordpress.org/support/users/mikebronner/)
 * (@mikebronner)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-361-update/#post-4152310)
 * This is how I fixed it:
 * Replace liines 110 and 111
 *     ```
       $tmp_url = $meta['quote'. ($i+1)];
       			$tmp_title = $meta['quote' . ($i+1) .'_title'];
       ```
   
 * with this:
 *     ```
       if (isset($meta['quote' . ($i + 1)]))
       		{
       			$tmp_url = $meta['quote'. ($i+1)];
       		}
       		if (isset($meta['quote' . ($i + 1) . '_title']))
       		{
       			$tmp_title = $meta['quote' . ($i+1) .'_title'];
       		}
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘WordPress 3.6.1 update’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/quote-source.svg)
 * [Quote Source](https://wordpress.org/plugins/quote-source/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/quote-source/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/quote-source/)
 * [Active Topics](https://wordpress.org/support/plugin/quote-source/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/quote-source/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/quote-source/reviews/)

## Tags

 * [WordPress update](https://wordpress.org/support/topic-tag/wordpress-update/)

 * 2 replies
 * 2 participants
 * Last reply from: [mikebronner](https://wordpress.org/support/users/mikebronner/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/wordpress-361-update/#post-4152310)
 * Status: not resolved