forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: fuzz on February 09, 2006, 10:46:58 am

Title: How do I get rid of entire "File description" & "Keywords" options for uploads?
Post by: fuzz on February 09, 2006, 10:46:58 am
Those two are not needed for the gallery's intended purpose & will just cause headaches with users.  Is there anyway to delete them?
Title: Re: How do I get rid of entire "File description" & "Keywords" options for uploa
Post by: Stramm on February 09, 2006, 11:22:00 am
in upload.php find
Code: [Select]
        array($captionLabel, 'caption', 3, $CONFIG['max_img_desc_length']),
        array($lang_upload_php['keywords'], 'keywords', 0, 255, 1),
and
Code: [Select]
    array($captionLabel, 'caption', 3, $CONFIG['max_img_desc_length'], (isset($iptc['Caption'])) ? $iptc['Caption'] : ''),
    array($lang_upload_php['keywords'], 'keywords', 0, 255, 1,(isset($iptc['Keywords'])) ? implode(' ',$iptc['Keywords']): ''),


comment it out