*** empty log message ***
This commit is contained in:
parent
54be542f05
commit
40435b1307
2 changed files with 7 additions and 2 deletions
|
@ -40,7 +40,10 @@ function myClock(eh, ei, es, dh, di, ds, next, interval) {
|
|||
}
|
||||
|
||||
function incClock() {
|
||||
if (clock['remaining'].getTime() <= clock['interval']) stopClock();
|
||||
if (clock['remaining'].getTime() <= clock['interval']*2) {
|
||||
stopClock();
|
||||
exit();
|
||||
}
|
||||
|
||||
clock['elapsed'].setTime(clock['elapsed'].getTime() + clock['interval']);
|
||||
clock['remaining'].setTime(clock['duration'].getTime() - clock['elapsed'].getTime());
|
||||
|
|
|
@ -289,7 +289,9 @@ class uiBrowser extends uiBase {
|
|||
extract($param);
|
||||
static $records, $relations;
|
||||
$arr =& $records[$id];
|
||||
if (is_array($arr)) return $arr;
|
||||
|
||||
if (is_array($arr)) return array('metadata' => $arr);
|
||||
|
||||
if (!is_array($relations)) include dirname(__FILE__).'/formmask/mdata_relations.inc.php';
|
||||
|
||||
$arr = $this->gb->getMDataArray($id, $this->sessid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue