Fixed typo

SVN:trunk[1433]
This commit is contained in:
Romain Quetiez
2011-08-08 14:24:35 +00:00
parent 01dd63f623
commit f4c1cf0818

View File

@@ -360,12 +360,12 @@ class FileDoc extends Document
public function DisplayBareProperties(WebPage $oPage, $bEditMode = false, $sPrefix = '')
{
if (!$bEditMode)
{
$oPage->SetCurrentTab(Dict::S('Class:Document:PreviewTab'));
$oPage->add($this->DisplayDocumentInline($oPage, 'contents'));
$oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
{
$oPage->SetCurrentTab(Dict::S('Class:Document:PreviewTab'));
$oPage->add($this->DisplayDocumentInline($oPage, 'contents'));
$oPage->SetCurrentTab(Dict::S('UI:PropertiesTab'));
}
parent::DisplayBareProperties($oPage, $bEditMode);
parent::DisplayBareProperties($oPage, $bEditMode, $sPrefix);
}
}