Various modifications for phpBB3Capitalise first letter for mchat

Snippets for phpBB3
Previous topicNext topic
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx Online
Founder
Founder
Status: Online
User theme: Dark
Posts: 6485
Joined: Jan 13th, '14, 20:45
    unknown unknown

Capitalise first letter for mchat

Post by dmzx »

Capitalise first letter for mchat

Addon for mchat.

Open /mchat.php

Find This may be a partial find and not the whole line

Code: Select all

// Reguest...
          $message = utf8_normalize_nfc(request_var('message', '', true));
Replace with Replace the preceding lines with the following

Code: Select all

 // Reguest...
          $message = utf8_ucfirst(utf8_normalize_nfc(request_var('message', '', true)));


Demo:say hello in the shoutbox DON'T use caps.

Previous topicNext topic