We have 283 guests online
OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Can't save Vehicle Type and Condition! How to fix (1 viewing) (1) Guest
VehicleManager component support
Go to bottom Favoured: 0
TOPIC: Can't save Vehicle Type and Condition! How to fix
#317
borkowski-edv (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Can't save Vehicle Type and Condition! How to fix 2 Years, 6 Months ago Karma: 0  
If you can't save Vehicle Type and Conditions:

Open admin.vehicletype.php

Search for this line (Vehicle Type):

$vehicle_type_list = mosHTML :: selectList($vehicletype, 'drive_type', 'class="inputbox" size="1"', 'value', 'text', $vehicle->vtype);

and change it to this:

$vehicle_type_list = mosHTML :: selectList($vehicletype, 'vtype', 'class="inputbox" size="1"', 'value', 'text', $vehicle->vtype);

---

Search for this line (Conditions):

$condition_status_list = mosHTML :: selectList($condition, 'condition', 'class="inputbox" size="1"', 'value', 'text', $vehicle->vcondition);

and change it to this:

$condition_status_list = mosHTML :: selectList($condition, 'vcondition', 'class="inputbox" size="1"', 'value', 'text', $vehicle->vcondition);

---

Thats all
 
Logged Logged  
  The administrator has disabled public write access.
Go to top