From 05a236f06a61c22cfdad13a82c5521de3b02ee10 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Sun, 19 Jul 2009 09:34:32 +0000 Subject: [PATCH] - Fixed bug #31: HTML display in the "export" page uses the appropriate stylesheet. SVN:trunk[85] --- application/cmdbabstract.class.inc.php | 4 ++-- webservices/export.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/application/cmdbabstract.class.inc.php b/application/cmdbabstract.class.inc.php index 3bd6401a5..aaf8bad4f 100644 --- a/application/cmdbabstract.class.inc.php +++ b/application/cmdbabstract.class.inc.php @@ -213,9 +213,9 @@ abstract class cmdbAbstractObject extends CMDBObject // Comment by Rom: this helper may be used to display objects of class DBObject // -> I am using this to display the changes history - public static function DisplaySet(web_page $oPage, CMDBObjectSet $oSet, $sLinkageAttribute = '') + public static function DisplaySet(web_page $oPage, CMDBObjectSet $oSet, $sLinkageAttribute = '', $bDisplayMenu = true) { - $oPage->add(self::GetDisplaySet($oPage, $oSet, $sLinkageAttribute)); + $oPage->add(self::GetDisplaySet($oPage, $oSet, $sLinkageAttribute, $bDisplayMenu)); } public static function GetDisplaySet(web_page $oPage, CMDBObjectSet $oSet, $sLinkageAttribute = '', $bDisplayMenu = true) diff --git a/webservices/export.php b/webservices/export.php index 530f95279..f6645e81a 100644 --- a/webservices/export.php +++ b/webservices/export.php @@ -1,6 +1,6 @@