]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost/theme.php
Update remaining "dir.friendi.ca" instances
[friendica.git] / view / theme / frost / theme.php
index 1f2c70c8bc7171ce7d7f396a571d5031aee49c0d..b09153876d67c09285609c27910d02ea35e33e24 100644 (file)
@@ -9,6 +9,8 @@
  * Maintainer: Zach P <techcity@f.shmuz.in>
  */
 
+use Friendica\App;
+
 function frost_init(App $a) {
        $a->videowidth = 400;
        $a->videoheight = 330;
@@ -49,12 +51,12 @@ function frost_item_photo_links(App $a, &$body_info) {
 
        $occurence = 1;
        $p = bb_find_open_close($body_info['html'], "<a", ">");
-       while ($p !== false && ($occurence++ < 500)) {
+       while($p !== false && ($occurence++ < 500)) {
                $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
 
                $matches = array();
                preg_match("/\/photos\/[\w]+\/image\/([\w]+)/", $link, $matches);
-               if ($matches) {
+               if($matches) {
 
                        // Replace the link for the photo's page with a direct link to the photo itself
                        $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);