From 6f347b445dbda45e521c233b29c476d9040f8079 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 29 Aug 2012 19:15:40 +0000 Subject: [PATCH] =?UTF-8?q?Validaciones=20para=20evitar=20que=20se=20metan?= =?UTF-8?q?=20urls=20de=20videos=20no=20v=C3=A1lidos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@152 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6 --- .../includes/bp-dedication-create-dedication.php | 6 ++++++ .../bp-dedication/includes/bp-dedication-screens.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/wp-content/plugins/bp-dedication/includes/bp-dedication-create-dedication.php b/wp-content/plugins/bp-dedication/includes/bp-dedication-create-dedication.php index eb59d00..7a74601 100644 --- a/wp-content/plugins/bp-dedication/includes/bp-dedication-create-dedication.php +++ b/wp-content/plugins/bp-dedication/includes/bp-dedication-create-dedication.php @@ -77,6 +77,10 @@ function bp_dedication_create_new_dedication() { $videoData = array(); + if ((!isYoutubeVideo($video_url)) && (!isVimeoVideo($video_url))) { + return false; + } + if (isYoutubeVideo($video_url)) { $videoID = getYouTubeVideoID($video_url); @@ -182,6 +186,8 @@ function bp_dedication_create_new_dedication() { do_action( 'bp_dedication_create_new_dedication', $post_id, $friend_email, $bp->loggedin_user->id); return true; + } else { + return false; } } diff --git a/wp-content/plugins/bp-dedication/includes/bp-dedication-screens.php b/wp-content/plugins/bp-dedication/includes/bp-dedication-screens.php index 44640c3..c81d7a3 100644 --- a/wp-content/plugins/bp-dedication/includes/bp-dedication-screens.php +++ b/wp-content/plugins/bp-dedication/includes/bp-dedication-screens.php @@ -102,7 +102,7 @@ function bp_dedication_new_dedication() { bp_core_add_message( __( 'Your dedication was created!', 'bp-dedication' ) ); bp_core_redirect( bp_loggedin_user_domain() . bp_get_dedication_slug()); } else { - + bp_core_add_message( __( 'Error. Your dedication not was created!', 'bp-dedication' ) ); } }