pull/2/head
Noah 2014-06-21 02:22:35 +00:00
rodzic a682ea17c1
commit 3e6e51e308
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -295,7 +295,7 @@ def upload_from_pc(request):
form = request.form
count = 0
status = None
for upload in request.files.getlist("file"):
for upload in reversed(request.files.getlist("file")):
count += 1
# Make a temp filename for it.
@ -553,4 +553,4 @@ def random_hash():
"""Get a short random hash to use as the base name for a photo."""
md5 = hashlib.md5()
md5.update(str(random.randint(0, 1000000)).encode("utf-8"))
return md5.hexdigest()[:8]
return md5.hexdigest()[:8]

Wyświetl plik

@ -100,7 +100,7 @@ def upload():
# Good!
if is_ajax:
# Was it a multiple upload?
if result["multi"]:
if result.get("multi"):
return ajax_response(True, url_for(".album_index", name=album))
else:
return ajax_response(True, url_for(".crop", photo=result["photo"]))
@ -262,4 +262,4 @@ def arrange_photos(album):
g.info["album"] = album
g.info["photos"] = photos
return template("photos/arrange_photos.html")
return template("photos/arrange_photos.html")