Please update source code of plugin qtranslate
-
I have error javascript when use Category.
File : qtranslate_wphacks.php
function error : qtrans_modifyTermFormFor($term)
Code error :
function qtrans_modifyTermFormFor($term) {
qtrans_modifyTermForm(‘name’, __(‘Name’), $term);
qtrans_modifyTermForm(‘tag-name’, __(‘Name’), $term);
}After fix error :
function qtrans_modifyTermFormFor($term) {
if (!isset($term) || $term instanceof stdClass) {
qtrans_modifyTermForm(‘name’, __(‘Name’), $term);
} else {
qtrans_modifyTermForm(‘tag-name’, __(‘Name’), $term);
}
}
The topic ‘Please update source code of plugin qtranslate’ is closed to new replies.