diff options
author | Guillaume AMAT <guillaume.amat@informatique-libre.com> | 2014-02-13 10:48:01 +0100 |
---|---|---|
committer | Guillaume AMAT <guillaume.amat@informatique-libre.com> | 2014-02-13 10:48:01 +0100 |
commit | 01dc7c5482e6b7486695fdba865a1c88ab05358d (patch) | |
tree | 6e98d1ac6c23931e99d57b8e671f3c1a8379cf35 | |
parent | 01dee35ebe1f3ab0e8a7f986015a9fa43a80b061 (diff) | |
download | nextcloud-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.js | 2 |
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; }, |