Change Default title on entry? 
Posted: 28 April 2008 01:06 PM   [ Ignore ]
Member
RankRankRank
Total Posts:  52
Joined  2007-10-16

How can I change the default entry title that is used when users do not enter a title when uploading photos via the GX2 entry form?

By default it is “Batch Upload”

Profile
 
 
Posted: 28 April 2008 01:40 PM   [ Ignore ]   [ # 1 ]
Administrator
Avatar
RankRankRankRank
Total Posts:  2232
Joined  2006-10-18

rmeder,

I believe it’s here: mod.gallery_extended.php
Around Line 850…

// -------------------------------------------
//  Insert Entry
// -------------------------------------------

function insert_entry( $entry_id = '', $type = 'weblog' )
{
  
global $DB, $FNS, $IN, $LANG, $OUT, $PREFS, $SESS, $LOC;
  
  
$cats    = array();
  
$categories   = array();
  
  
$fields    = array(
         
'related_id'   => '',
         
'related_type'   => '',
         
'cat_id'    => '',
         
'title'     => 'Batch Upload',
         
'caption'    => '',
         
'status'    => 'o',
         
'entry_date'   => $LOC->now,
         
'allow_comments'  => 'y',
         
'custom_field_one'  => '',
         
'custom_field_two'  => '',
         
'custom_field_three' => '',
         
'custom_field_four'  => '',
         
'custom_field_five'  => '',
         
'custom_field_six'  => ''
         
);

 Signature 
Profile
 
 
   
 
 
‹‹ CSS like EE Gallery      issue after upgrade ››