From fe80a2a007b1d4e30862d0b8caf23f3c083ec2d0 Mon Sep 17 00:00:00 2001 From: david Date: Thu, 11 Oct 2012 17:04:11 +0000 Subject: [PATCH] Arreglado error git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@186 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6 --- wp-content/plugins/bp-dedication/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/plugins/bp-dedication/functions.php b/wp-content/plugins/bp-dedication/functions.php index 40dc663..fa97e69 100644 --- a/wp-content/plugins/bp-dedication/functions.php +++ b/wp-content/plugins/bp-dedication/functions.php @@ -18,7 +18,7 @@ function bp_dedication_get_dedications_from_user( $user_id ) { $args = array( 'post_status' => array('publish', 'private'), - 'numberposts' => 10, + 'numberposts' => -1, 'category' => get_cat_id('dedication'), 'author' => $user_id ); @@ -33,7 +33,7 @@ function bp_dedication_get_dedications_to_user( $user_id ) { $args = array( 'post_status' => array('publish', 'private'), - 'numberposts' => 10, + 'numberposts' => -1, 'category' => 'dedication', 'meta_key' => 'ghostpool_destination_user_id', 'meta_value' => $user_id