View Issue Details

IDProjectCategoryView StatusLast Update
0005315OXID eShop (all versions)1.01. Products (product, categories, manufacturer, promotions etc.)public2023-11-20 15:47
Reporterarvydas_vapsva Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Fixed in Version6.0.0-beta.1 
Summary0005315: Wrong JS in monitor code, breaks on IE8
Descriptionis now:
                var b = document.getElementById('oxidDebugInfo_$sLogId');
                var c = document.body;
                if (c) { c.appendChild(b.parentNode.removeChild(b));}

should be:

                document.body.onload = function() {
                    var b = document.getElementById('oxidDebugInfo_$sLogId');
                    var c = document.body;
                    if (c) { c.appendChild(b.parentNode.removeChild(b));}
                };
TagsNo tags attached.
Theme
BrowserAll
PHP VersionNot defined
Database VersionNot defined

Activities

There are no notes attached to this issue.