Overview
Comment:Fix typo in condition
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA3-256: 758b7592b47aca90315651135c2ef30593c71fbed0a80e4c0d4493eeb078214f
User & Date: bohwaz on 2022-11-27 17:35:01
Other Links: branch diff | manifest | tags
Context
2022-11-27
17:35
Fix arguments order in substr check-in: 851a16f926 user: bohwaz tags: dev
17:35
Fix typo in condition check-in: 758b7592b4 user: bohwaz tags: dev
16:54
Use a custom shorter selector for session user login check-in: 6b9aafd0fa user: bohwaz tags: dev
Changes

Modified src/include/lib/Garradin/Config.php from [a6adcfd20a] to [5035617656].

284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
			if ($key == 'favicon') {
				$format = 'png';
				$i = new Image($f->fullpath());
				$i->cropResize(32, 32);
				$f->setContent($i->output($format, true));
			}
			// Force icon format
			else if ($key == 'favicon') {
				$format = 'png';
				$i = new Image($f->fullpath());
				$i->cropResize(512, 512);
				$f->setContent($i->output($format, true));
			}
			// Force signature size
			else if ($key == 'signature') {







|







284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
			if ($key == 'favicon') {
				$format = 'png';
				$i = new Image($f->fullpath());
				$i->cropResize(32, 32);
				$f->setContent($i->output($format, true));
			}
			// Force icon format
			else if ($key == 'icon') {
				$format = 'png';
				$i = new Image($f->fullpath());
				$i->cropResize(512, 512);
				$f->setContent($i->output($format, true));
			}
			// Force signature size
			else if ($key == 'signature') {