raster pushed a commit to branch master. http://git.enlightenment.org/website/www.git/commit/?id=f48782560b98870ddf6357f61a60032fc1267ab7
commit f48782560b98870ddf6357f61a60032fc1267ab7 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Wed Nov 6 22:34:12 2013 +0900 update.php doesnt handle NEWER e versions well --- public_html/update.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public_html/update.php b/public_html/update.php index 13d51d5..957113b 100644 --- a/public_html/update.php +++ b/public_html/update.php @@ -72,6 +72,10 @@ for ($l = 0; $l < $linecount; $l++) $res = "OLD " . $apps[$app]; break; } + if (intval($vsv[$i]) < intval($vcl[$i])) + { + break; + } } $fh = fopen($_SERVER["DOCUMENT_ROOT"] . "/../logs/e17-updates", "a"); --