mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
28 lines
918 B
Diff
28 lines
918 B
Diff
Index: grantlee-5.1.0/templates/lib/templateloader.cpp
|
|
===================================================================
|
|
--- grantlee-5.1.0.orig/templates/lib/templateloader.cpp
|
|
+++ grantlee-5.1.0/templates/lib/templateloader.cpp
|
|
@@ -141,10 +141,6 @@ Template FileSystemTemplateLoader::loadB
|
|
+ QLatin1Char('/') + fileName);
|
|
const QFileInfo fi(file);
|
|
|
|
- if (file.exists()
|
|
- && !fi.canonicalFilePath().contains(
|
|
- QDir(d->m_templateDirs.at(i)).canonicalPath()))
|
|
- return Template();
|
|
++i;
|
|
}
|
|
|
|
@@ -173,11 +169,6 @@ FileSystemTemplateLoader::getMediaUri(co
|
|
+ QLatin1Char('/') + fileName);
|
|
|
|
const QFileInfo fi(file);
|
|
- if (!fi.canonicalFilePath().contains(
|
|
- QDir(d->m_templateDirs.at(i)).canonicalPath())) {
|
|
- ++i;
|
|
- continue;
|
|
- }
|
|
|
|
if (file.exists()) {
|
|
auto path = fi.absoluteFilePath();
|