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 | |
parent | a5311a04c7a1b4deb6904a3f781c43bcbceca782 (diff) | |
download | elgg-a8f616e81ba48583540d65102471644547e64af8.tar.gz elgg-a8f616e81ba48583540d65102471644547e64af8.tar.bz2 |
used proper dbprefix
-rw-r--r-- | friendmostrecent.php | 3 | ||||
-rw-r--r-- | friendmostviewed.php | 3 | ||||
-rw-r--r-- | mostrecentimages.php | 1 | ||||
-rw-r--r-- | mostviewedimages.php | 3 | ||||
-rw-r--r-- | yourmostrecent.php | 3 | ||||
-rw-r--r-- | yourmostviewed.php | 3 |
6 files changed, 11 insertions, 5 deletions
diff --git a/friendmostrecent.php b/friendmostrecent.php index 9c6eb8ed0..10d99251a 100644 --- a/friendmostrecent.php +++ b/friendmostrecent.php @@ -19,7 +19,8 @@ } $user = get_user_by_username($friendname); - $prefix = "my_elgg"; //how do you get the global default? + global $CONFIG; + $prefix = $CONFIG->dbprefix; $max = 24; //grab the top views (metadata 'tp_views') for $max number of entities //ignores entity subtypes diff --git a/friendmostviewed.php b/friendmostviewed.php index 300c3ccb5..901a8ff08 100644 --- a/friendmostviewed.php +++ b/friendmostviewed.php @@ -28,7 +28,8 @@ } $user = get_user_by_username($friendname); - $prefix = "my_elgg"; //how do you get the global default? + global $CONFIG; + $prefix = $CONFIG->dbprefix; $max = 24; //grab the top views (metadata 'tp_views') for $max number of entities //ignores entity subtypes diff --git a/mostrecentimages.php b/mostrecentimages.php index 8cc4a1f51..53d8ef236 100644 --- a/mostrecentimages.php +++ b/mostrecentimages.php @@ -17,4 +17,5 @@ $area2 .= $images; $body = elgg_view_layout('two_column_left_sidebar', '', $area2); page_draw($title, $body); + ?>
\ No newline at end of file diff --git a/mostviewedimages.php b/mostviewedimages.php index 0de7c626f..caf755193 100644 --- a/mostviewedimages.php +++ b/mostviewedimages.php @@ -9,7 +9,8 @@ // Load Elgg engine include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); - $prefix = "my_elgg"; //how do you get the global default? + global $CONFIG; + $prefix = $CONFIG->dbprefix; $max = 24; //grab the top views (metadata 'tp_views') for $max number of entities //ignores entity subtypes 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 diff --git a/yourmostviewed.php b/yourmostviewed.php index 193464c04..40d05c038 100644 --- a/yourmostviewed.php +++ b/yourmostviewed.php @@ -10,7 +10,8 @@ include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php"); $viewer = get_loggedin_user(); - $prefix = "my_elgg"; //how do you get the global default? + global $CONFIG; + $prefix = $CONFIG->dbprefix; $max = 24; //grab the top views (metadata 'tp_views') for $max number of entities //ignores entity subtypes |