]> git.mxchange.org Git - friendica.git/blobdiff - mod/ping.php
Frost-mobile: media query in css for tablets
[friendica.git] / mod / ping.php
index 23a3f493798406addf7db53c9c3463600e8bfc5b..55dcb26bb5b199c70e7ddab8cb277e8d2f386e5d 100644 (file)
@@ -10,8 +10,16 @@ function ping_init(&$a) {
                <result>";
 
        $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
+
        if(local_user()){
 
+               // Different login session than the page that is calling us. 
+
+               if(intval($_GET['uid']) && intval($_GET['uid']) != local_user()) {
+                       echo '<invalid>1</invalid></result>';
+                       killme();
+               }
+
                $firehose = intval(get_pconfig(local_user(),'system','notify_full'));
 
                $t = q("select count(*) as total from notify where uid = %d and seen = 0",
@@ -22,7 +30,7 @@ function ping_init(&$a) {
                                and seen = 0 order by date desc limit 0, 50",
                                intval(local_user())
                        );
-                       $sysnotify = $r[0]['total'];
+                       $sysnotify = $t[0]['total'];
                }
                else {
                        $z1 = q("select * from notify where uid = %d
@@ -134,6 +142,8 @@ function ping_init(&$a) {
 
 
                function xmlize($href, $name, $url, $photo, $date, $seen, $message){
+                       $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message);
+                       call_hooks('ping_xmlize', $data);
                        $notsxml = '<note href="%s" name="%s" url="%s" photo="%s" date="%s" seen="%s" >%s</note>';
                        return sprintf ( $notsxml,
                                xmlify($href), xmlify($name), xmlify($url), xmlify($photo), xmlify($date), xmlify($seen), xmlify($message)