Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 5705 Rev 5707
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 = $feed->description;
569
                    $share_description = str_replace('í', '', $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 = $post->description;
624
                    $share_description = str_replace('í', '', $post->description);
625
 
625
 
Línea 705... Línea 705...
705
            $viewModel->setTemplate('leaders-linked/home/share.phtml');
705
            $viewModel->setTemplate('leaders-linked/home/share.phtml');
706
            $viewModel->setVariables([
706
            $viewModel->setVariables([
707
                'share_image' => $share_image,
707
                'share_image' => $share_image,
708
                'share_url' => $share_url,
708
                'share_url' => $share_url,
709
                'share_title' => strip_tags($share_title),
709
                'share_title' => strip_tags($share_title),
710
                'share_description' => strip_tags($share_description),
710
                'share_description' => strip_tags(str_replace('í', '', $share_description)),
711
                // 'share_increment_external_counter_url' => $share_increment_external_counter_url,
711
                // 'share_increment_external_counter_url' => $share_increment_external_counter_url,
Línea 712... Línea 712...
712
 
712