1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:35:55 +00:00

cleanup previous

This commit is contained in:
Andrew Dolgov
2021-02-26 09:22:16 +03:00
parent 56b10fea18
commit 7815a881e8
2 changed files with 0 additions and 16 deletions

View File

@@ -443,18 +443,6 @@
return in_array($interface, class_implements($class));
}
function T_js_decl($s1, $s2) {
if ($s1 && $s2) {
$s1 = preg_replace("/\n/", "", $s1);
$s2 = preg_replace("/\n/", "", $s2);
$s1 = preg_replace("/\"/", "\\\"", $s1);
$s2 = preg_replace("/\"/", "\\\"", $s2);
return "T_messages[\"$s1\"] = \"$s2\";\n";
}
}
function get_theme_path($theme) {
$check = "themes/$theme";
if (file_exists($check)) return $check;