private function func_html_minorerrorbox($msg, $file, $line)
 {
     $message = "Error: " . strip_tags($msg) . "\n\n";
     $message .= "File: " . $file . "\n\n";
     $message .= "Line: " . $line . "\n\n";
     $message .= "Time/Date: " . date("d.m.y h:i:s") . "\n\n";
     parent::func_CCme('*****@*****.**', 'AIRSafecast - Minor PHP Error', $message, 'AIRSafecast');
     echo '
     <div class="errorbox" id="minorerror">
         <p>
             <strong>Error:</strong> ' . $msg . '<br /><br />
             <strong>In File:</strong> ' . $file . '<br />
             <strong>At Line:</strong> ' . $line . '<br /><br />
             Information forwarded to: crowkeep@gmail.com / AIRSafecast Bugs.
         </p>
     </div>
     ';
 }