remove "not verified" from comments

Note: this is a really bad way to do this - see the comments for the right way.

I disagree on this point, but a friend asked and other folks have previously been confused so I removed the "not verified" label from a site and I was confused on where to do it. A little bit of grepping and I found it's in common.inc:

@@ -898,7 +899,8 @@
$output = $object->name;
}

- $output .= ' ('. t('not verified') .')';
+ //burrell says "no 'not verified' on the comments"
+ //$output .= ' ('. t('not verified') .')';

Comments

moved for 4.7.2

greggles's picture

I should have noted that my fix was for 4.6.

Let's say that you need to do this and you are using 4.7.2, Matt Farina figured out one way to do it.

It's now in the file /includes/theme.inc

Go to line 987 or so and comment out the inclusion of "not verified" into the output. That's all!

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Allowed HTML tags: <br> <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <strike> <h3> <pre> <blockquote> <h2> <div> <p>
  • Lines and paragraphs break automatically.