universe

Universe
git clone https://git.dasho.dev/universe.git
Log | Files | Refs | Submodules | README

commit 56d5614ed6de6cbe4bfbedcfbd282ed9f2c47e52
parent 88b4d8b115d36a279e50f3c1ac38f086b6bbbabf
Author: Dasho <git@dasho.dev>
Date:   Sat,  7 Jun 2025 03:39:22 +0100

[chat] 🖋️ Fix typos...

Diffstat:
Mchat/index.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chat/index.php b/chat/index.php @@ -28,7 +28,7 @@ load_config(); // set session variable to cookie if cookies are enabled if(!isset($_REQUEST['session']) && isset($_COOKIE[COOKIENAME])){ - //Modification that prevents users from doing unwanted things (for exmaple unintenionally deleting their account), if someone else posts a malicious link. + //Modification that prevents users from doing unwanted things (for example unintentionally deleting their account), if someone else posts a malicious link. // MODIFICATION added logout to list of unwanted things if(isset($_REQUEST['action']) && ($_REQUEST['action']==='profile'||$_REQUEST['action']==='post'|| $_REQUEST['action']==='admin' || $_REQUEST['action']==='setup'||$_REQUEST['action']==='logout')){ $_REQUEST['action']='login';