summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume AMAT <guillaume.amat@informatique-libre.com>2014-02-13 10:48:01 +0100
committerGuillaume AMAT <guillaume.amat@informatique-libre.com>2014-02-13 10:48:01 +0100
commit01dc7c5482e6b7486695fdba865a1c88ab05358d (patch)
tree6e98d1ac6c23931e99d57b8e671f3c1a8379cf35
parent01dee35ebe1f3ab0e8a7f986015a9fa43a80b061 (diff)
downloadnextcloud-server-01dc7c5482e6b7486695fdba865a1c88ab05358d.tar.gz
nextcloud-server-01dc7c5482e6b7486695fdba865a1c88ab05358d.zip
Gets the page title from oc_defaults in Files app
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 7691135e620..14f03121ff6 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -23,7 +23,7 @@ window.FileList={
*/
setPageTitle: function(title){
// Sets the page title with the " - ownCloud" suffix as in templates
- window.document.title = title + ' - ownCloud';
+ window.document.title = title + ' - ' + oc_defaults.title;
return true;
},