From 8f71873e68b6d9a70b08fbdd11eced4203c6cc1f Mon Sep 17 00:00:00 2001 From: Pascal Corpet Date: Mon, 25 Oct 2010 10:54:39 +0200 Subject: [PATCH] Fixes a typo bug (== instead of =) in contacts/csv/birthday --- modules/carnet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/carnet.php b/modules/carnet.php index 1d065af..b9f57e5 100644 --- a/modules/carnet.php +++ b/modules/carnet.php @@ -382,7 +382,7 @@ class CarnetModule extends PLModule $user = Platal::session()->tokenAuth($alias, $hash); if (is_null($user)) { if (S::logged()) { - $user == S::user(); + $user = S::user(); } else { return PL_FORBIDDEN; } -- 2.1.4