Fix php interpretation in configure.phtml file

See https://github.com/FreshRSS/FreshRSS/issues/252
pull/749/head
Marien Fressinaud 10 years ago
parent 04b9bd0b49
commit 251d5a78ce
  1. 5
      lib/Minz/Extension.php

@ -97,7 +97,10 @@ class Minz_Extension {
if (!file_exists($filename)) {
return false;
}
return @file_get_contents($filename);
ob_start();
include($filename);
return ob_get_clean();
}
/**

Loading…
Cancel
Save