It's sugar community edition v5.5 I believe. I would attach the files, but I've modified the entire module, it's practically built from scratch. I don't think you'd care to root through the entire thing.
The field is definitely in the database. I added it there myself. I've also included the variable in the class:
PHP Code:
class Publications extends SugarBean {
...
var $name;
var $description;
var $ftp_name;
...
And here it is being called by the editview metadata:
PHP Code:
'panels' =>array (
'default' => array (
array (
...
array (
array('name'=>'ftp_name', 'label'=>'LBL_FTP_NAME', 'displayParams'=>array('size'=>100)),
),
...
I don't know if this is relevant, but I've also tried adding the field to the field_arrays.php for this module:
PHP Code:
$fields_array['Publications'] = array ('column_fields' => Array("id"
, "date_entered"
, "date_modified"
, "modified_user_id"
, "created_by"
, "name"
, "ftp_name"
, "description"
),
'list_fields' => Array('id'
,'name'
,'date_modified'
,'created_by'
),
'required_fields' => array("name"=>1),
);
--EDIT--
I've rebuilt the module, and roles, tons of times via the admin repair tools and this hasn't made a difference. I also have developer mode turned on so this shouldn't make a difference.
--EDIT--
There are no errors in the sugarcrm.log file either. So it doesn't appear to be a core file problem.
Bookmarks