From 64302252c0740e793d7e35f8ea55980d9c5f039c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Bustos?= Date: Tue, 1 May 2018 12:43:17 -0300 Subject: [PATCH] Resize settings Resize method only works with numbers as a parameter, is not necessary to put px at the end. --- config/phpvms.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/phpvms.php b/config/phpvms.php index 2c837bdb..1a303d31 100644 --- a/config/phpvms.php +++ b/config/phpvms.php @@ -67,9 +67,10 @@ return [ /* * Avatar resize settings * feel free to edit the following lines. + * Both parameters are in px. */ 'avatar' => [ - 'width' => '200px', - 'height' => '200px', + 'width' => '200', + 'height' => '200', ], ];