Browse Source

Fixed typo

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1433 a333f486-631f-4898-b8df-5754b55c2be0
romainq 14 years ago
parent
commit
eeb8146ce2
1 changed files with 5 additions and 5 deletions
  1. 5 5
      modules/itop-config-mgmt-1.0.0/model.itop-config-mgmt.php

+ 5 - 5
modules/itop-config-mgmt-1.0.0/model.itop-config-mgmt.php

@@ -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);
 		
 	}
 }