kopia lustrzana https://github.com/friendica/friendica
add event titles to discovered birthday events
rodzic
0f0ffce1b6
commit
78ede4744f
|
@ -447,11 +447,13 @@ function update_contact_birthdays() {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$bdtext = t('Birthday:') . ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]' ;
|
$bdtext = sprintf( t('%s\'s birthday'), $rr['name']);
|
||||||
|
$bdtext2 = sprintf( t('Happy Birthday %s'), ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]' ;
|
||||||
|
|
||||||
|
|
||||||
$r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`,`adjust`)
|
|
||||||
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%d' ) ",
|
$r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`,`adjust`)
|
||||||
|
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%d' ) ",
|
||||||
intval($rr['uid']),
|
intval($rr['uid']),
|
||||||
intval($rr['id']),
|
intval($rr['id']),
|
||||||
dbesc(datetime_convert()),
|
dbesc(datetime_convert()),
|
||||||
|
@ -459,6 +461,7 @@ function update_contact_birthdays() {
|
||||||
dbesc(datetime_convert('UTC','UTC', $nextbd)),
|
dbesc(datetime_convert('UTC','UTC', $nextbd)),
|
||||||
dbesc(datetime_convert('UTC','UTC', $nextbd . ' + 1 day ')),
|
dbesc(datetime_convert('UTC','UTC', $nextbd . ' + 1 day ')),
|
||||||
dbesc($bdtext),
|
dbesc($bdtext),
|
||||||
|
dbesc($bdtext2),
|
||||||
dbesc('birthday'),
|
dbesc('birthday'),
|
||||||
intval(0)
|
intval(0)
|
||||||
);
|
);
|
||||||
|
|
|
@ -1457,11 +1457,12 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$bdtext = t('Birthday:') . ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
|
$bdtext = sprintf( t('%s\'s birthday'), $contact['name']);
|
||||||
|
$bdtext2 = sprintf( t('Happy Birthday %s'), ' [url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' ;
|
||||||
|
|
||||||
|
|
||||||
$r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`desc`,`type`)
|
$r = q("INSERT INTO `event` (`uid`,`cid`,`created`,`edited`,`start`,`finish`,`summary`,`desc`,`type`)
|
||||||
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s' ) ",
|
VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
|
||||||
intval($contact['uid']),
|
intval($contact['uid']),
|
||||||
intval($contact['id']),
|
intval($contact['id']),
|
||||||
dbesc(datetime_convert()),
|
dbesc(datetime_convert()),
|
||||||
|
@ -1469,6 +1470,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
|
||||||
dbesc(datetime_convert('UTC','UTC', $birthday)),
|
dbesc(datetime_convert('UTC','UTC', $birthday)),
|
||||||
dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
|
dbesc(datetime_convert('UTC','UTC', $birthday . ' + 1 day ')),
|
||||||
dbesc($bdtext),
|
dbesc($bdtext),
|
||||||
|
dbesc($bdtext2),
|
||||||
dbesc('birthday')
|
dbesc('birthday')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue