Procházet zdrojové kódy

Add missing slashes.

tags/1.0.0
Vsevolod Stakhov před 8 roky
rodič
revize
f80eb1003e
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4
    4
      rules/rspamd.lua

+ 4
- 4
rules/rspamd.lua Zobrazit soubor

@@ -51,10 +51,10 @@ local function file_exists(filename)
end
end

if file_exists(local_conf .. 'rspamd.local.lua') then
dofile(local_conf .. 'rspamd.local.lua')
if file_exists(local_conf .. '/rspamd.local.lua') then
dofile(local_conf .. '/rspamd.local.lua')
end

if file_exists(local_rules .. 'rspamd.classifiers.lua') then
dofile(local_rules .. 'rspamd.classifiers.lua')
if file_exists(local_rules .. '/rspamd.classifiers.lua') then
dofile(local_rules .. '/rspamd.classifiers.lua')
end

Načítá se…
Zrušit
Uložit