X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/e93d2cad41fe7bdf049a19a199ab7be9b3362636..92c25d4b2b930bbcde1e45834878de380a6457ca:/Utils/Slugger.php

diff --git a/Utils/Slugger.php b/Utils/Slugger.php
index 8a2856d..b3f18e2 100644
--- a/Utils/Slugger.php
+++ b/Utils/Slugger.php
@@ -23,7 +23,7 @@ class Slugger {
 	//Retrieve secret and set offset from reduction
 	public function __construct(ContainerInterface $container) {
 		//Set secret
-		$this->secret = $container->getParameter('kernel.secret');
+		$this->secret = $_SERVER['APP_SECRET'] ?? $container->getParameter('kernel.secret');
 
 		//Pseudo-random alphabet
 		//XXX: use array flip and keys to workaround php "smart" that cast range('0', '9') as int instead of string