move class BlogEntry to Blog_entry for DB_DataObject compliance

This commit is contained in:
Evan Prodromou
2011-06-20 10:20:01 -04:00
parent 4c9ae4fae6
commit d51abd8830
5 changed files with 15 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ class ShowblogentryAction extends ShownoticeAction
{
$this->id = $this->trimmed('id');
$this->entry = BlogEntry::staticGet('id', $this->id);
$this->entry = Blog_entry::staticGet('id', $this->id);
if (empty($this->entry)) {
// TRANS: Client exception thrown when referring to a non-existing blog entry.