From 0fd33d4e9b50fddef6e4ba5d8684c2d0909f9f04 Mon Sep 17 00:00:00 2001 From: remicollet Date: Fri, 13 Mar 2009 11:22:23 +0000 Subject: [PATCH] [example] fix function call order (thanks yllen) git-svn-id: https://forge.glpi-project.org/svn/example/trunk@67 349b9182-4a13-0410-896f-e5e9767dd1b3 --- config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.php b/config.php index 1c69d21..ca1ac0a 100755 --- a/config.php +++ b/config.php @@ -42,9 +42,10 @@ include (GLPI_ROOT . "/inc/includes.php"); checkRight("config","w"); -commonHeader("TITRE",$_SERVER['PHP_SELF'],"plugins"); // To be available when plugin in not activated usePLugin('example'); + +commonHeader("TITRE",$_SERVER['PHP_SELF'],"config","plugins"); echo "This is the plugin config page
"; echo $LANG['plugin_example']["test"]; commonFooter();