Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 719 → Rev 720

/trunk/plugins/viathinksoft/publicPages/095_attachments/OIDplusPagePublicAttachments.class.php
50,7 → 50,7
$file_owner_a = -1;
$file_owner_a_name = '???';
} else {
$tmp = posix_getpwuid($file_owner_a);
$tmp = function_exists('posix_getpwuid') ? posix_getpwuid($file_owner_a) : false;
$file_owner_a_name = $tmp !== false ? $tmp['name'] : 'UID '.$file_owner_a;
}
 
59,7 → 59,7
$file_owner_b = -1;
$file_owner_b_name = '???';
} else {
$tmp = posix_getpwuid($file_owner_b);
$tmp = function_exists('posix_getpwuid') ? posix_getpwuid($file_owner_b) : false;
$file_owner_b_name = $tmp !== false ? $tmp['name'] : 'UID '.$file_owner_b;
}