Overview
Comment:Clean up debug
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: d37e68735c191915843f69f87ad7c5cb3cc1b39e
User & Date: bohwaz on 2020-11-26 23:13:32
Other Links: branch diff | manifest | tags
Context
2020-11-27
12:32
Delete unused code check-in: 09d5e5feb7 user: bohwaz tags: dev
2020-11-26
23:13
Clean up debug check-in: d37e68735c user: bohwaz tags: dev
21:39
Fix calls to non-existing method check-in: 3f22ad4a10 user: bohwaz tags: dev, 1.0.0-rc1
Changes

Modified src/include/lib/Garradin/Membres/Session.php from [36af1e20aa] to [73e8704ad0].

57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
	}

	// Extension des méthodes de UserSession
	public function __construct()
	{
		$url = parse_url(ADMIN_URL);

		//throw new \Exception('lol');

		parent::__construct(DB::getInstance(), [
			'cookie_domain' => $url['host'],
			'cookie_path'   => preg_replace('!/admin/$!', '/', $url['path']),
			'cookie_secure' => (\Garradin\PREFER_HTTPS >= 2) ? true : false,
		]);
	}








<
<







57
58
59
60
61
62
63


64
65
66
67
68
69
70
	}

	// Extension des méthodes de UserSession
	public function __construct()
	{
		$url = parse_url(ADMIN_URL);



		parent::__construct(DB::getInstance(), [
			'cookie_domain' => $url['host'],
			'cookie_path'   => preg_replace('!/admin/$!', '/', $url['path']),
			'cookie_secure' => (\Garradin\PREFER_HTTPS >= 2) ? true : false,
		]);
	}