Skip to content
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.

Commit

Permalink
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions functions.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?php

function find($first, $latest, $text) {
@preg_match_all("/" . preg_quote($first, "/") .
"(.*?)". preg_quote($latest, "/")."/i", $text, $m);
preg_match_all("/" . preg_quote($first, "/") . "(.*?)". preg_quote($latest, "/")."/i", $text, $m);
return @$m[1];
}

Expand Down Expand Up @@ -82,7 +81,6 @@ function editLocal($localeEx, $fileop, $fileopUp){
break;
}
}
if (!isset($localeTR)) {
return $localeTR;
}
if (isset($localeTR)) {return $localeTR;}
else {$localeTR = null; return $localeTR; }
}

0 comments on commit 152a1f4

Please sign in to comment.