im wondering if someone can help me im trying to build a escort booking system using the skeleton i have custoomised the form files and i have come across the following error
Fatal error: Call to undefined method OW_Language::firstname() in /home/jktempla/public_html/fabcouples/ow_plugins/booking/classes/form.php on line 14
Heres the code for the section in error
class BOOKING_CLASS_Form extends Form
{
public function __construct( $name )
{
parent::__construct($name);
$language = OW::getLanguage();
//Simple text field
$firstname = new TextField("firstname");
$firstname->setLabel($language->firstname("booking", "forms_text_field_label"));
$firstname->setDescription($language->firstname("booking", "forms_text_field_description"));
$firstname->setHasInvitation(true);
$firstname->setRequired();
$this->addElement($firstname);
What is causing this jan x