add auto friend to Dolphin 7.0.8
I see that you want to add auto friend to Dolphin 7.0.8 in inc/classes/Bx DolJoinProcessor.Php
at line 248-249 $aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
add the code below
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
So the end results will look like this
$aProfile1 = $this->oPF->getProfileFromValues($this->aValues[0]);
list($iId1, $sStatus1) = $oPC->createProfile($aProfile1);
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 2, `Check` = 1");
$dump = db_res("INSERT INTO sys_friend_list SET `ID` = '{$iId1}', `Profile` = 1, `Check` = 1");
How to do video calling on whatsapp
-
Whatsapp recently launched video calling feature for some people.
Although, not all the people are able to get this feature because it is
still in beta s...
8 years ago