projects
/
platal.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
896479a
)
Fixes a typo bug (== instead of =) in contacts/csv/birthday
author
Pascal Corpet
<pascal.corpet@m4x.org>
Mon, 25 Oct 2010 08:54:39 +0000
(10:54 +0200)
committer
Pascal Corpet
<pascal.corpet@m4x.org>
Mon, 25 Oct 2010 08:54:39 +0000
(10:54 +0200)
modules/carnet.php
patch
|
blob
|
blame
|
history
diff --git
a/modules/carnet.php
b/modules/carnet.php
index
1d065af
..
b9f57e5
100644
(file)
--- 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;
}