update using a config'd server

darcs-hash:20080703165043-34904-1e63865bc37f34e5dbb6e194d22e4f35383861c2.gz
This commit is contained in:
Evan Prodromou 2008-07-03 12:50:43 -04:00
parent 1f434f502b
commit 121b7e60b4
1 changed files with 6 additions and 1 deletions

View File

@ -625,7 +625,12 @@ function common_avatar_path($filename) {
}
function common_avatar_url($filename) {
$server = common_config('avatar', 'server');
if ($server) {
return 'http://'.$server.'/'.$filename;
} else {
return common_path('avatar/'.$filename);
}
}
function common_default_avatar($size) {
@ -930,7 +935,7 @@ function common_ensure_syslog() {
function common_log($priority, $msg, $filename=NULL) {
common_ensure_syslog();
syslog($priority, $msg);
# syslog($priority, $msg);
}
function common_debug($msg, $filename=NULL) {