From 83ffaf726b9d3d3bf0936249e2632af94f4d2ff7 Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sun, 18 Feb 2018 12:44:58 +0100 Subject: [PATCH] Plugin : fix indent --- include/class/extension.class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/class/extension.class.php b/include/class/extension.class.php index 478f54807..e51c16950 100644 --- a/include/class/extension.class.php +++ b/include/class/extension.class.php @@ -76,11 +76,11 @@ class Extension extends Menu_Ref_sql function can_request($p_login) { $cnt=$this->cn->get_value("select count(*) from menu_ref - join profile_menu using (me_code) - join profile_user using (p_id) - where - me_code=$1 - and user_name=$2", array($this->me_code, $p_login)); + join profile_menu using (me_code) + join profile_user using (p_id) + where + me_code=$1 + and user_name=$2", array($this->me_code, $p_login)); if ($cnt>0) return 1; return 0;