Make Email Address Mandatory

Make Email Address Mandatory
345c3d26 Tuesday 14th August 2018, 20:53:45

Was wondering how I would make inputting your email address mandatory when posting?  I've looked over all the posts on this forum with no luck and also in my admin>>config but nothing there either.  Is this possible?

Replies 11
Fred
Fred  Sunday 25th November 2018, 10:20:17

No plugin require, just edit add.php file and search in:
if(Util::isGETValidEntry('forum', 'topic'))
For add a topic, replace:
if(HTMLForm::checkBot() && HTMLForm::check('trip', 0, 20) && HTMLForm::check('title', 5, 80) && HTMLForm::check('content', 1, 4000) && CSRF::check($token) )

by:
if(HTMLForm::checkBot() && HTMLForm::checkMail($_POST['mail']) && HTMLForm::check('trip', 0, 20) && HTMLForm::check('title', 5, 80) && HTMLForm::check('content', 1, 4000) && CSRF::check($token) )

For add a reply, seach in:
if(Util::isGETValidEntry('topic', 'reply'))
replace:
if(HTMLForm::checkBot() && HTMLForm::check('trip', 0, 20) && HTMLForm::check('content', 1, 4000) && CSRF::check($token) && $error=='' )

by:
if(HTMLForm::checkBot() && HTMLForm::checkMail($_POST['mail']) && HTMLForm::check('trip', 0, 20) && HTMLForm::check('content', 1, 4000) && CSRF::check($token) && $error=='' )

Save add.php file and is done.
  • Before ask a question, read the documentation.
  • 🎉  Featured as #1 product of the day on Product Hunt
  • Please like in alternativeto.net 👍🏻
  • ╰☆╮Flatboard╰☆╮ is a open source and community contributions are essential to project success!
  • <TextField>, my new CMS project designed by a passionate developer, for developers!
  • I am currently busy 😫.

Fred
Fred  Sunday 25th November 2018, 10:22:06

  No need to ban it is just an IP VPN :)

Last modified by Fred on Sunday 25th November 2018, 10:23:00
  • Before ask a question, read the documentation.
  • 🎉  Featured as #1 product of the day on Product Hunt
  • Please like in alternativeto.net 👍🏻
  • ╰☆╮Flatboard╰☆╮ is a open source and community contributions are essential to project success!
  • <TextField>, my new CMS project designed by a passionate developer, for developers!
  • I am currently busy 😫.

104ca5c7  Friday 8th March 2019, 21:31:04

 
Awesome, thanks Fred!