static function initThisList($parent, $class)
 {
     global $gbl, $sgbl, $login, $ghtml;
     $ret = null;
     /*
     	if (checkIfLatest()) {
     		return $ret;
     	}
     */
     $list = getFullVersionList();
     $result = self::parseReleaseNote($list);
     return $result;
 }
Exemple #2
0
function getVersionList($till = null)
{
    $list = getFullVersionList($till);
    foreach ($list as $k => $l) {
        if (preg_match("/2\$/", $l) && $k !== count($list) - 1) {
            continue;
        }
        $nnlist[] = $l;
    }
    $nlist = $nnlist;
    return $nlist;
}
Exemple #3
0
function getVersionList($till = null)
{
    // Project issue #1091
    // Removed code that skipped every version with a number 2 in it.
    // DT22022014
    $list = getFullVersionList($till);
    foreach ($list as $k => $l) {
        $nnlist[] = $l;
    }
    $nlist = $nnlist;
    return $nlist;
}