qTranslate-Team / qtranslate-x

Wordpress plugin: Adds user-friendly and database-friendly multilingual content management and translation support.
http://qtranslatexteam.wordpress.com/about/
GNU General Public License v3.0
206 stars 149 forks source link

Uninitialized string offset #491

Open essensx opened 7 years ago

essensx commented 7 years ago

qtranslate-x/qtranslate_utils.php:501

Throws: Uninitialized string offset: 2

felixprojekt commented 6 years ago

Can be temporarily fixed going to that file and manually change line 501 from

if($locale[2] == '_'){

to

if(isset($locale[2]) && $locale[2] == '_'){