diff options
Diffstat (limited to 'modules/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index f007ae1f1..6cf55dcd7 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -331,7 +331,7 @@ function blogapi_status_error_check($node, $original_status) { $node = (object) $node; - $node_type_default = variable_get('node_options_'. $node->type, array('status', 'promote')); + $node_type_default = variable_get('node_options_' . $node->type, array('status', 'promote')); // If we don't have the 'administer nodes' permission and the status is // changing or for a new node the status is not the content type's default, @@ -584,7 +584,7 @@ function blogapi_mt_validate_terms($node) { $term_list = array_unique($node->taxonomy); $params = $term_list; $params[] = $node->type; - $result = db_query(db_rewrite_sql("SELECT t.tid, t.vid FROM {taxonomy_term_data} t INNER JOIN {taxonomy_vocabulary_node_type} n ON t.vid = n.vid WHERE t.tid IN (". db_placeholders($term_list) .") AND n.type = '%s'", 't', 'tid'), $params); + $result = db_query(db_rewrite_sql("SELECT t.tid, t.vid FROM {taxonomy_term_data} t INNER JOIN {taxonomy_vocabulary_node_type} n ON t.vid = n.vid WHERE t.tid IN (" . db_placeholders($term_list) . ") AND n.type = '%s'", 't', 'tid'), $params); $found_terms = array(); $found_count = 0; while ($term = db_fetch_object($result)) { @@ -768,7 +768,7 @@ function blogapi_admin_settings() { '#field_suffix' => t('MB') ); - $form['settings_general']['upload_max_size'] = array('#value' => '<p>'. t('Your PHP settings limit the maximum file size per upload to %size.', array('%size' => format_size(file_upload_max_size()))).'</p>'); + $form['settings_general']['upload_max_size'] = array('#value' => '<p>' . t('Your PHP settings limit the maximum file size per upload to %size.', array('%size' => format_size(file_upload_max_size()))) . '</p>'); $roles = user_roles(FALSE, 'administer content with blog api'); $form['roles'] = array('#type' => 'value', '#value' => $roles); |