Title: Update 3.8.0 &#8211;&gt; .1 &#8211;&gt; .2  Parse error when activating plugin
Last modified: August 20, 2016

---

# Update 3.8.0 –> .1 –> .2 Parse error when activating plugin

 *  Resolved [tomueberall](https://wordpress.org/support/users/tomueberall/)
 * (@tomueberall)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/)
 * Had running version 3.8.0 on wordpress 3.5.1 successfully.
 * When updating to 3.8.2, i just get this error when activating the plugin:
 * “Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /home/www/wp-content/
   plugins/leaguemanager/admin/admin.php on line 1440”
 * [http://wordpress.org/extend/plugins/leaguemanager/](http://wordpress.org/extend/plugins/leaguemanager/)

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

 *  [marvinduran](https://wordpress.org/support/users/marvinduran/)
 * (@marvinduran)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611237)
 * yup… I have the same problem.
    NEW wordpress install to test this plugin.
 *  [marvinduran](https://wordpress.org/support/users/marvinduran/)
 * (@marvinduran)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611254)
 * FIXED IT!!
    replace line 1440 with this line
 * $this->league = $leaguemanager->getLeague($this->$league_id);
 * it was missing a $ on the last (this->)
 *  [stabiasport](https://wordpress.org/support/users/stabiasport/)
 * (@stabiasport)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611264)
 * to me the same error (“Parse error: syntax error, unexpected T_OBJECT_OPERATOR
   in /home/www/wp-content/plugins/leaguemanager/admin/admin.php on line 1440”) ,
   
   how can I fix it?
 *  [marvinduran](https://wordpress.org/support/users/marvinduran/)
 * (@marvinduran)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611267)
 * did you even READ the complete post??
    I posted the solution above your question.
 *  [stabiasport](https://wordpress.org/support/users/stabiasport/)
 * (@stabiasport)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611275)
 * is now resolved. thanks
 *  Plugin Author [LaMonte Forthun](https://wordpress.org/support/users/lamontef/)
 * (@lamontef)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611277)
 * If you use this:
    $this->league = $leaguemanager->getLeague($this->$league_id);
 * Your exported CSV file will not be named properly as there can’t be a ‘$’ in 
   front of ‘league_id’
 * The line needs to be:
 * $this->league = $leaguemanager->getLeague($this->league_id);
 * It will be submitted as a fix shortly.
 *  Plugin Author [LaMonte Forthun](https://wordpress.org/support/users/lamontef/)
 * (@lamontef)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611367)
 * This issue was fixed with v3.8.4
 *  [stabiasport](https://wordpress.org/support/users/stabiasport/)
 * (@stabiasport)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611376)
 * Thank you for your support very essential
 *  Plugin Author [LaMonte Forthun](https://wordpress.org/support/users/lamontef/)
 * (@lamontef)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611377)
 * You’re welcome

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

The topic ‘Update 3.8.0 –> .1 –> .2 Parse error when activating plugin’ is closed
to new replies.

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

## Tags

 * [fixed](https://wordpress.org/support/topic-tag/fixed/)
 * [parse-error](https://wordpress.org/support/topic-tag/parse-error/)
 * [PHP errors](https://wordpress.org/support/topic-tag/php-errors/)

 * 9 replies
 * 4 participants
 * Last reply from: [LaMonte Forthun](https://wordpress.org/support/users/lamontef/)
 * Last activity: [13 years, 1 month ago](https://wordpress.org/support/topic/update-380-1-2-parse-error-when-activating-plugin/#post-3611377)
 * Status: resolved