summaryrefslogtreecommitdiffstats
path: root/templates/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.php')
-rw-r--r--templates/index.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/index.php b/templates/index.php
index a85f23ca7..9eb870666 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -1,4 +1,13 @@
<?php
+
+// backports
+if (version_compare(implode('.', \OCP\Util::getVersion()), '7.8', '<=')) {
+ if (!function_exists('style')) {
+ require_once __DIR__ . '/7.php';
+ }
+ style('news', '7');
+}
+
script('news', [
'vendor/es6-shim/es6-shim.min',
'vendor/angular/angular.min',
@@ -16,6 +25,8 @@ style('news', [
'mobile',
'custom'
]);
+
+
?>