Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5701 | Rev 5703 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5701 Rev 5702
Línea 564... Línea 564...
564
                            $share_title = $share_title  .  ' -  ' . $feed->title;
564
                            $share_title = $share_title  .  ' -  ' . $feed->title;
565
                        }
565
                        }
566
                    }
566
                    }
Línea 567... Línea 567...
567
 
567
 
Línea 568... Línea 568...
568
 
568
 
569
                    $share_description = strip_tags($feed->description);
569
                    $share_description = str_replace(array("#", "'", ";", "¡"), '', $feed->description);
Línea 570... Línea 570...
570
 
570
 
Línea 619... Línea 619...
619
                $postMapper = PostMapper::getInstance($this->adapter);
619
                $postMapper = PostMapper::getInstance($this->adapter);
620
                $post = $postMapper->fetchOneByUuid($code);
620
                $post = $postMapper->fetchOneByUuid($code);
Línea 621... Línea 621...
621
 
621
 
622
                if ($post && $post->status == Post::STATUS_ACTIVE) {
622
                if ($post && $post->status == Post::STATUS_ACTIVE) {
623
                    $share_title = $post->title;
623
                    $share_title = $post->title;
Línea 624... Línea 624...
624
                    $share_description = strip_tags($post->description);
624
                    $share_description = $post->description;
625
 
625