From 794c20eff72e03a6af2fbdebb091560ed8b6f296 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Sun, 22 Feb 2015 19:12:38 +0100 Subject: [PATCH] fix error on link encrypted parameters --- lib/functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/functions.php b/lib/functions.php index c613d4a..76ae4b0 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -555,6 +555,8 @@ jirafeau_get_link ($hash) $out['link_code'] = trim ($c[9]); if (trim ($c[10]) == 'C') $out['crypted'] = true; + else + $out['crypted'] = false; return $out; } -- 2.34.1