View Issue Details

IDProjectCategoryView StatusLast Update
0007300OXID eShop (all versions)2.3. Extensions (modules, themes)public2022-01-14 09:12
ReporterDayanaLuedecke Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionopen 
Product Version6.3.1 
Summary0007300: Tags Module: no parent call in oetagsArticleMain->saveAdditionalArticleData()
DescriptionProblem for other additional Data. Saving other additional Data not possible anymore.
Steps To ReproduceSOLUTION in oetagsArticleMain:

protected function saveAdditionalArticleData($article, $parameters)
    {
        $article = parent::saveAdditionalArticleData($article, $parameters);
        //saving tags
        if (isset($parameters['tags'])) {
            $tags = $parameters['tags'];
            if (!trim($tags)) {
                $tags = $article->oxarticles__oxsearchkeys->value;
            }
            $invalidTags = $this->_setTags($tags, $article->getId());
            if (!empty($aInvalidTags)) {
                $this->_aViewData["invalid_tags"] = implode(', ', $invalidTags);
            }
        }
        return $article;
    }
TagsNo tags attached.
ThemeNot defined
BrowserNot defined
PHP VersionNot defined
Database VersionNot defined

Activities

QA

2022-01-14 09:11

administrator   ~0013523

Dear DayanaLuedecke,

thank you for reaching out to us.

All modules in this repo https://github.com/OXIDprojects are not developed by OXID eSales, but have been handed over to the community.

To fix your error, you can either open an issue and/or open a pull request with your proposed solution.
https://github.com/OXIDprojects/tags-module/blob/master/controllers/admin/oetagsArticleMain.php

Best Regards

QA - SG -