Fix videourl code for cases where url is in link_url format, a=chris

Chris Pollett [2012-05-10 06:48:49]
Fix videourl code for cases where url is in link_url format, a=chris
Filename
views/helpers/videourl_helper.php
diff --git a/views/helpers/videourl_helper.php b/views/helpers/videourl_helper.php
index db258db..88da921 100644
--- a/views/helpers/videourl_helper.php
+++ b/views/helpers/videourl_helper.php
@@ -55,7 +55,13 @@ class VideourlHelper extends Helper
      *  @param string $url to check if of a video site
      */
     public function render($url)
-    {
+    {
+        if(substr($url, 0, 3) == "url") {
+            $link_url_parts = explode("|", $url);
+            if(count($link_url_parts) > 1) {
+                $url = $link_url_parts[1];
+            }
+        }
         if(stripos($url, "http://www.youtube.com/watch?v=") !== false) {
             $id = substr($url, 31, 11);
             ?><a class="video-link" href="<?php e($url); ?>"><img
ViewGit