Bug Fixed upload photo - the photo not set to primary automatically
1) Open filename : inc/classes/BxDolMedia.php
2) Look in : function insertMediaToDb( $sFileName )
3) After this line :
Insert this :if( 0 < $iResult )
{
// START bug fixed -- first photo upload make primary
if ( $this -> aMedia['0']['PrimPhoto'] == 0 )
{
$iLastID = mysql_insert_id();
$this -> oMediaQuery -> setPrimaryPhoto( $this -> iProfileID, $iLastID );
$this -> aMedia['0']['PrimPhoto'] = $iLastID;
}
// END bug fixed -- first photo upload make primary


LinkBack URL
About LinkBacks



Reply With Quote

Bookmarks