mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-10-13 18:04:54 +02:00
Merge pull request #220 from forgee/fix_#205
Fix #205 special/database2znoteaac.php
This commit is contained in:
@@ -1,6 +1,18 @@
|
||||
<?php
|
||||
$time = time();
|
||||
if (!isset($version)) $version = '1.5_SVN';
|
||||
|
||||
if (!function_exists("elapsedTime")) {
|
||||
function elapsedTime($l_start = false, $l_time = false) {
|
||||
if ($l_start === false) global $l_start;
|
||||
if ($l_time === false) global $l_time;
|
||||
|
||||
$l_time = explode(' ', microtime());
|
||||
$l_finish = $l_time[1] + $l_time[0];
|
||||
return round(($l_finish - $l_start), 4);
|
||||
}
|
||||
}
|
||||
|
||||
$install = "
|
||||
<h2>Install:</h2>
|
||||
<ol>
|
||||
|
Reference in New Issue
Block a user