Fix wrong parameter

This commit is contained in:
Max Kostikov 2018-11-29 23:28:45 +01:00
parent d6442ec991
commit 6f2d09eb20

View File

@ -1111,8 +1111,7 @@ function linkify($s, $me = false) {
function sslify($s) { function sslify($s) {
// Local photo cache // Local photo cache
$cacheon = get_config('system','photo_cache_enable', 0); if(get_config('system','photo_cache_enable', 0) && local_channel()) {
if($cache && local_channel()) {
$matches = null; $matches = null;
$cnt = preg_match_all("/\<img(.+?)src=[\"|'](https?\:.*?)[\"|'](.*?)\>/", $s, $matches, PREG_SET_ORDER); $cnt = preg_match_all("/\<img(.+?)src=[\"|'](https?\:.*?)[\"|'](.*?)\>/", $s, $matches, PREG_SET_ORDER);
if ($cnt) { if ($cnt) {