code cleanup

This commit is contained in:
friendica
2014-02-20 17:07:43 -08:00
parent 5c984aab66
commit e55170c00a
3 changed files with 14 additions and 23 deletions

View File

@@ -1,23 +1,12 @@
<?php
require_once('include/attach.php');
require_once('include/datetime.php');
require_once('include/identity.php');
function wall_attach_post(&$a) {
// Figure out who owns the page and if they allow attachments
if(argc() > 1) {
$nick = argv(1);
$r = q("SELECT channel.* from channel where channel_address = '%s' limit 1",
dbesc($nick)
);
if(! $r)
killme();
$channel = $r[0];
}
if(argc() > 1)
$channel = get_channel_by_nick(argv(1));
else
killme();