Skip to content
Snippets Groups Projects
Commit 67ddd3e7 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #585838 by sun: quick fix for {comment}.status being broken.

parent 1b9cde9d
No related branches found
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ function comment_help($path, $arg) {
}
/**
* Implement hook_entity_info() {
* Implement hook_entity_info().
*/
function comment_entity_info() {
$return = array(
......@@ -1493,7 +1493,7 @@ protected function buildQuery() {
$this->query->addField('n', 'type', 'node_type');
$this->query->innerJoin('users', 'u', 'base.uid = u.uid');
$this->query->addField('u', 'name', 'registered_name');
$this->query->fields('u', array( 'uid', 'signature', 'picture', 'data', 'status'));
$this->query->fields('u', array('uid', 'signature', 'picture', 'data'));
}
protected function attachLoad(&$comments) {
......@@ -1665,11 +1665,11 @@ function comment_form($form, &$form_state, $comment) {
$author = $comment->registered_name;
}
if (!empty($comment->status)) {
if (isset($comment->status)) {
$status = $comment->status;
}
else {
$status = 0;
$status = COMMENT_NOT_PUBLISHED;
}
if (!empty($comment->date)) {
......@@ -1742,8 +1742,8 @@ function comment_form($form, &$form_state, $comment) {
'#type' => 'radios',
'#parents' => array('status'),
'#title' => t('Status'),
'#default_value' => $status,
'#options' => array(t('Not published'), t('Published')),
'#default_value' => $status,
'#options' => array(COMMENT_NOT_PUBLISHED => t('Not published'), COMMENT_PUBLISHED => t('Published')),
'#weight' => -1,
);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment