aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wall_attach.php
blob: 47c09741662c4b4ac7088729a74a9fcdce86181b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

require_once('include/attach.php');
require_once('include/identity.php');

function wall_attach_post(&$a) {

	if(argc() > 1)
		$channel = get_channel_by_nick(argv(1));
	else
		killme();

	$r = attach_store($channel,get_observer_hash());

	if(! $r['success']) {
		notice( $r['message'] . EOL);
		killme();
	}

	echo  "\n\n" . '[attachment]' . $r['data']['hash'] . ',' . $r['data']['revision'] . '[/attachment]' . "\n";
	killme();

}