summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BitBlog.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/BitBlog.php b/BitBlog.php
index 1aa8420..873cfc1 100644
--- a/BitBlog.php
+++ b/BitBlog.php
@@ -70,7 +70,8 @@ class BitBlog extends LibertyMime {
function getDisplayUrl() {
$ret = NULL;
if( $this->isValid() ) {
- $ret = self::getDisplayUrlFromHash( array ( 'blog_id' => $this->$mBlogId ) );
+ $hash = array ( 'blog_id' => $this->mBlogId );
+ $ret = self::getDisplayUrlFromHash( $hash );
}
return $ret;
}