can no longer avoid recording the curl response code

This commit is contained in:
Mike Macgirvin 2010-10-13 22:01:23 -07:00
commit d96ae0f9f5
3 changed files with 23 additions and 5 deletions

View file

@ -46,11 +46,10 @@ function photos_init(&$a) {
function photos_post(&$a) {
if(! local_user()) {
notice( t('Permission denied.') . EOL );
killme();
}
if(! local_user()) {
notice( t('Permission denied.') . EOL );
killme();
}
$r = q("SELECT `contact`.* `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`