mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +08:00
11 lines
212 B
PHP
11 lines
212 B
PHP
|
<?php
|
||
|
|
||
|
if (@file_exists(__DIR__.'/app/index.php'))
|
||
|
{
|
||
|
include_once OC_App::getAppPath('rainloop').'/lib/RainLoopHelper.php';
|
||
|
|
||
|
OC_RainLoop_Helper::regRainLoopDataFunction();
|
||
|
|
||
|
include __DIR__.'/app/index.php';
|
||
|
}
|