Bug Fatal error when trying to submit or preview

Status
Not open for further replies.

CharlieDelta

Customer
Trying to preview and submit a review and getting this error on both.
Code:
Fatal error: Call to undefined function eequire_once() in /../../../crrforums/dbtech/review/actions/doaddreview.php on line 60
 
Got a typo in there, sorry.
Open
dbtech/review/actions/doaddreview.php

On about line 60 replace

PHP:
        eequire_once(DIR . '/includes/functions_wysiwyg.php');

with

PHP:
        require_once(DIR . '/includes/functions_wysiwyg.php');
 
I case you didn't know how to fix it.
Open dbtech/review/actions/doeditreview.php

Replace

PHP:
eequire_once(DIR . '/includes/functions_wysiwyg.php');

with

PHP:
require_once(DIR . '/includes/functions_wysiwyg.php');
 
Status
Not open for further replies.

Legacy DragonByte Reviews

vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
194
Customer rating
0.00 star(s) 0 ratings
Back
Top