Fixed title format

This commit is contained in:
Vincent Petry 2014-02-20 14:56:28 +01:00
parent 6cf83de60e
commit 476444ab1a
1 changed files with 8 additions and 1 deletions

View File

@ -22,6 +22,13 @@ window.FileList={
* Sets a new page title * Sets a new page title
*/ */
setPageTitle: function(title){ setPageTitle: function(title){
if (title) {
title += ' - ';
}
else {
title = '';
}
title += t('files', 'Files');
// Sets the page title with the " - ownCloud" suffix as in templates // Sets the page title with the " - ownCloud" suffix as in templates
window.document.title = title + ' - ' + oc_defaults.title; window.document.title = title + ' - ' + oc_defaults.title;
@ -206,7 +213,7 @@ window.FileList={
FileList.setPageTitle(baseDir); FileList.setPageTitle(baseDir);
} }
else { else {
FileList.setPageTitle(t('files', 'Files')); FileList.setPageTitle();
} }
FileList.setCurrentDir(targetDir, changeUrl); FileList.setCurrentDir(targetDir, changeUrl);