don't allow fullscreen for youtube iframe - this makes it hard to visit the network page when they throw an error

This commit is contained in:
Friendika
2011-08-26 01:32:22 -07:00
parent a4739aef91
commit 1861dc1fae
3 changed files with 30 additions and 8 deletions

View File

@@ -641,15 +641,19 @@ function notifier_run($argv, $argc){
/* Don't deliver to folks who have already been delivered to */
if(in_array($rr['id'],$conversants))
if(in_array($rr['id'],$conversants)) {
logger('notifier: already delivered id=' . $rr['id']);
continue;
}
$n = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
intval($rr['id'])
intval($rr['id'])
);
if(count($n)) {
$contact = $n[0];
logger('pubdeliver: network: ' . $contact['network']);
switch($contact['network']) {
case NETWORK_DFRN :
logger('notifier: dfrnpubdelivery: ' . $contact['name']);