Added rudimentary EEPROM file uploading support to the forum post editor.

This commit is contained in:
flash 2023-03-09 21:05:37 +00:00
parent 3d438ea36f
commit da1d3184bc
4 changed files with 389 additions and 4 deletions

View file

@ -154,6 +154,10 @@ Template::set('globals', [
'site_url' => $cfg->getValue('site.url', IConfig::T_STR),
'site_twitter' => $cfg->getValue('social.twitter', IConfig::T_STR),
'site_chat' => $cfg->getValue('sockChat.chatPath.normal', IConfig::T_STR),
'eeprom' => [
'path' => $cfg->getValue('eeprom.path', IConfig::T_STR),
'app' => $cfg->getValue('eeprom.app', IConfig::T_STR),
],
]);
Template::addPath(MSZ_TEMPLATES);