ben sadece Seri İlan yüklü ama ben kurulumdan sonra bu hatayı alıyorum:
- Notice: Undefined index: type in ed_classified_form_alter() (line 218 of /home3/amineamm/public_html/chrini/sites/all/modules/ed_classified/ed_classified.module).
I php koduna baktığınızda ben bunu düzeltmek için nasıl anlamaya olamaz. İşte benim kod:
function ed_classified_form_alter(&$form, $form_state, $form_id) {
module_load_include('inc', 'ed_classified', 'ed_classified_utils');
if ($form['type']['#value'] == EDI_CLASSIFIED_MODULE_NAME) { //LINE 218
if ($form_id == 'ed_classified_node_form' && $form['attachments'] && _ed_classified_variable_get('alter_attachment_text', EDI_CLASSIFIED_VAR_DEF_ALTER_ATTACHMENT_TEXT) ) {
// Don't allow the attachments block to be collapsed.
$form['attachments']['#collapsed']=FALSE;
$form['attachments']['#collapsible']=FALSE;
// Enhance the help for classified ads.
// NOTE: this is appropriate for the upload_image module enhancements only!
$form['attachments']['#title']=t('Photo Attachments');
$form['attachments']['#description']= _ed_classified_variable_get('alter_attachment_text_description', t(EDI_CLASSIFIED_VAR_DEF_ALTER_ATTACHMENT_TEXT_DESCRIPTION));
}
}
}
Herhangi bir öneri?