• 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);
    }
    }

    https://ww.wp.xz.cn/plugins/qtranslate/

The topic ‘Please update source code of plugin qtranslate’ is closed to new replies.