- Patch #844892 by andypost: minor code style fixes.

merge-requests/26/head
Dries Buytaert 2010-07-10 01:44:28 +00:00
parent b7be0bd184
commit 856b6e1f40
3 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ function profile_block_save($delta = '', $edit = array()) {
function profile_block_view($delta = '') {
if (user_access('access user profiles')) {
$output = '';
if ((arg(0) == 'node') && is_numeric(arg(1)) && (arg(2) == NULL)) {
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == NULL) {
$node = node_load(arg(1));
$account = user_load($node->uid);

View File

@ -60,7 +60,7 @@ function statistics_exit() {
if (variable_get('statistics_count_content_views', 0)) {
// We are counting content views.
if ((arg(0) == 'node') && is_numeric(arg(1)) && arg(2) == '') {
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == NULL) {
// A node has been viewed, so update the node's counters.
db_merge('node_counter')
->key(array('nid' => arg(1)))

View File

@ -467,7 +467,7 @@ function _trigger_normalize_user_context($type, $account) {
// If a single node is being viewed, return the node.
case 'node':
// If we are viewing an individual node, return the node.
if ((arg(0) == 'node') && is_numeric(arg(1)) && (arg(2) == NULL)) {
if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == NULL) {
return node_load(array('nid' => arg(1)));
}
break;