source: trunk/www.guidonia.net/wp/wp-content/plugins/fbconnect/xd_receiver.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 746 bytes
Line 
1<?php
2include 'lib/core.php';
3
4// cache the xd_receiver
5header('Cache-Control: max-age=225065900');
6header('Expires:');
7header('Pragma:');
8
9?>
10
11<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
12 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
13<html xmlns="http://www.w3.org/1999/xhtml" >
14<head>
15 <title>cross domain receiver page</title>
16</head>
17<body>
18
19<!--
20This is a cross domain (XD) receiver page. It needs to be placed on your domain so that the Javascript
21 library can communicate within the iframe permission model. Put it here:
22
23 http://www.example.com/xd_receiver.php
24-->
25
26<?php
27 echo '<script src="'.get_static_root().'/js/api_lib/v0.4/XdCommReceiver.debug.js" type="text/javascript"></script>';
28
29?>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.