when I try to extend a view on module from core, and the core also extend on her own path, Phalcon still use module relative path
sample:
- app/
- app/controllers/
- app/views/
- app/views/content.volt extend template.colt
- app/views/template.volt extend core.colt
- app/views/core.volt
- app/modules/
- app/modules/ModuleName/
- app/modules/ModuleName/view/
- app/modules/ModuleName/view/content.volt extend app/views/template.volt
when I call app/module/moduleName/views/content.volt, the template.volt cannot extend core.volt, instead of ../../../view/core.volt
but I need to extend too from app/views/content.volt