summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-04-13 18:46:11 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2016-04-13 18:46:11 +0200
commitaf5d2420d1f38c19ff5e11c45d3f0f8694c2f0fe (patch)
treee05b8cefefcbd785cadcec6ddf94411c0f44f6a4
parent00ca71cc83e9df2c818c2fc8f0d5da5fc1002e88 (diff)
Fix #9728.4.1
-rw-r--r--CHANGELOG.md3
-rw-r--r--appinfo/info.xml2
-rw-r--r--js/app/Config.js3
-rw-r--r--templates/index.php3
4 files changed, 4 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6de54474d..9529a262e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+owncloud-news (8.4.1)
+* **Bugfix**: Fix error messages in the logs which were caused by outdated template includes, #972
+
owncloud-news (8.4.0)
* **Enhancement**: Use the feed url when showing an example of a curl command if a feed does not exist, #969
* **Enhancement**: Also filter duplicate items from web frontend when in folder, starred or all articles view, #465
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 43b042b13..285b54fc1 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -7,7 +7,7 @@
<author>Bernhard Posselt, Alessandro Cosentino, Jan-Christoph Borchardt</author>
<category>multimedia</category>
<licence>AGPL</licence>
- <version>8.4.0</version>
+ <version>8.4.1</version>
<namespace>News</namespace>
<!-- resources -->
diff --git a/js/app/Config.js b/js/app/Config.js
index b795374a0..7f9c54bef 100644
--- a/js/app/Config.js
+++ b/js/app/Config.js
@@ -207,9 +207,6 @@ app.config(function ($routeProvider, $provide, $httpProvider) {
}).when('/shortcuts', {
templateUrl: 'shortcuts.html',
type: -1
- }).when('/subscription-url', {
- templateUrl: 'subscription.html',
- type: -1
});
});
diff --git a/templates/index.php b/templates/index.php
index 2e5c464fb..b87908139 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -70,9 +70,6 @@ foreach (Plugin::getScripts() as $appName => $fileName) {
</div>
<!-- content -->
- <script type="text/ng-template" id="audio.html">
- <?php print_unescaped($this->inc('part.content.audio')) ?>
- </script>
<script type="text/ng-template" id="content.html">
<?php print_unescaped($this->inc('part.content')) ?>
</script>