View Issue Details

IDProjectCategoryView StatusLast Update
0003025OXID eShop (all versions)2.3. Extensions (modules, themes)public2012-12-10 13:33
Reportertjungcl 
PriorityurgentSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.5.0 revision 34568 
Target VersionFixed in Version4.5.1 revision 38045 
Summary0003025: regarding 0002569: no change required: issue not correctly handled
Descriptionthe issue 0002569 was closed, although it was not fixed.
You wrote, it works as supposed, javascript, css, theme specific images have no inheritance, but that is definitly not true:

Steps To Reproduce- create a directory /out/test
- create /out/test/theme.php:
<?php
 $aTheme = array(
   'title' => 'test',
   'description' => 'test',
   'thumbnail' => 'test.gif',
   'version' => '0.5',
   'author' => 'test',
   'parentTheme' => 'azure',
   'parentVersions' => array('0.5'),
);
?>
- go to admin and activate test-theme
=> frontend looks just like azure, nothing changed

- create /out/test/src/css
=> frontend is unchanged

- create an empty file: /out/test/src/css/elements.css
=> frontend messed up, al right. We overwrote elements.css with an empty file
HOWEVER:
=> all other files from src are still in use:
[...]
<link rel="stylesheet" type="text/css" href="[...]/out/azure/src/css/fxstyles.css">
<link rel="stylesheet" type="text/css" href="[...]/out/test/src/css/elements.css">
[...]

So we overwrote ONLY the elements.css, all other files from src are used from the azure theme

- delete elements.css again
=> frontend looks okay

- create /out/test/img
=> frontend cant find any file from /out/test/img

Even though each file exist in /out/azure/img, it is not used - and that is what differs from the src-directory handling!



Additional InformationTo overwrite the logo of a shop, the user has to copy ALL files from /out/azure/img to /out/test/img and there replace the logo.png

That definitly is an issue!
TagsNo tags attached.
ThemeBoth
BrowserAll
PHP Versionany
Database Versionany

Relationships

related to 0002569 resolvedLinas Kukulskis Custom theme: image inheritance not working if img-folder is present in custom theme 

Activities

Linas Kukulskis

2011-07-05 14:07

reporter   ~0004820

checked the js and css inheritence. it works fine.

tjungcl

2011-07-05 14:18

reporter   ~0004821

Last edited: 2011-07-05 14:21

View 2 revisions

of course it does.

the img inheritance doesnt, thats the whole point.

I compared the not working img inheritance to the working src inheritance.

Linas Kukulskis

2011-07-05 14:50

reporter   ~0004822

0002569 fixed images inheritance