print.php 1 location
|
@@ 114-119 (lines=6) @@
|
| 111 |
|
$newWords = array(); |
| 112 |
|
$i = 0; |
| 113 |
|
|
| 114 |
|
while ($i < $maxWords - 1 && $i < count($words)) { |
| 115 |
|
if (isset($words[$i])) { |
| 116 |
|
$newWords[] = trim($words[$i]); |
| 117 |
|
} |
| 118 |
|
++$i; |
| 119 |
|
} |
| 120 |
|
|
| 121 |
|
$link_meta_description = implode(' ', $newWords); |
| 122 |
|
|
singlelink.php 1 location
|
@@ 157-162 (lines=6) @@
|
| 154 |
|
$newWords = array(); |
| 155 |
|
$i = 0; |
| 156 |
|
|
| 157 |
|
while ($i < $maxWords - 1 && $i < count($words)) { |
| 158 |
|
if (isset($words[$i])) { |
| 159 |
|
$newWords[] = trim($words[$i]); |
| 160 |
|
} |
| 161 |
|
++$i; |
| 162 |
|
} |
| 163 |
|
$link_meta_description = implode(' ', $newWords); |
| 164 |
|
|
| 165 |
|
if (is_object($xoTheme)) { |