Make Email Address Mandatory
Replies 11
No plugin require, just edit add.php file and search in:
if(Util::isGETValidEntry('forum', 'topic'))
For add a topic, replace:
by:
For add a reply, seach in:
if(Util::isGETValidEntry('topic', 'reply'))
replace:
by:
Save add.php file and is done.
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!
- My last project Fast⚡︎CMS, a Flat-File cms.
- I am currently busy 😫.
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!
- My last project Fast⚡︎CMS, a Flat-File cms.
- I am currently busy 😫.
Suggested Topics
Fred
started A stable version for the upcoming release?
Announcements
alba@e023b76c
started Merci !
International Discussions
Alexander Liebrecht
started Mobile Navigation in Flatboard Forum
General Questions
RED-LINE@42796168
started translation Some new strings for better translation
Feature Requests