diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-05-12 02:50:55 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-05-12 02:50:55 +0000 |
commit | a8f616e81ba48583540d65102471644547e64af8 (patch) | |
tree | 4e4a70bb953927c3a625f50bccfeae09e4255e2b /yourmostrecent.php | |
parent | a5311a04c7a1b4deb6904a3f781c43bcbceca782 (diff) | |
download | elgg-a8f616e81ba48583540d65102471644547e64af8.tar.gz elgg-a8f616e81ba48583540d65102471644547e64af8.tar.bz2 |
used proper dbprefix
Diffstat (limited to 'yourmostrecent.php')
-rw-r--r-- | yourmostrecent.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yourmostrecent.php b/yourmostrecent.php index 68c83cd7e..69b4b93e9 100644 --- a/yourmostrecent.php +++ b/yourmostrecent.php @@ -6,8 +6,9 @@ include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); + global $CONFIG; $viewer = get_loggedin_user(); - $prefix = "my_elgg"; //how do you get the global default? + $prefix = $CONFIG->dbprefix; $max = 24; //grab the top views (metadata 'tp_views') for $max number of entities //ignores entity subtypes |