dir/mod/submit.php

21 lines
336 B
PHP
Raw Permalink Normal View History

2012-05-16 07:31:36 +02:00
<?php
2017-11-01 07:29:31 +01:00
require_once 'include/submit.php';
require_once 'include/sync.php';
2012-05-16 07:31:36 +02:00
2017-11-01 07:29:31 +01:00
use Friendica\Directory\App;
function submit_content(App &$a)
{
//Decode the URL.
$url = hex2bin(notags(trim($_GET['url'])));
2017-11-01 07:29:31 +01:00
//Currently we simply push RAW URL's to our targets.
sync_push($url);
//Run the submit sequence.
run_submit($url);
2012-05-16 07:31:36 +02:00
2017-11-01 07:29:31 +01:00
exit;
}