mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2026-04-25 06:55:56 +03:00
[GH-ISSUE #18] Upload does not work when upload code is set #13
Labels
No labels
Feature request
Feature request
bug
cant reproduce
enhancement
help wanted
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/pictshare#13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @quarks3k on GitHub (Oct 23, 2016).
Original GitHub issue: https://github.com/HaschekSolutions/pictshare/issues/18
@geek-at commented on GitHub (Oct 23, 2016):
Can't reproduce. Works for me.
What precise upload code did you use?
Could it be that you're mixing up MASTER_DELETE_CODE and UPLOAD_CODE?
@quarks3k commented on GitHub (Oct 23, 2016):
problem is in processSingleUpload()
code is
if(UPLOAD_CODE && !$pm->uploadCodeExists($_REQUEST['upload_code']))which should be
if(UPLOAD_CODE && !$this->uploadCodeExists($_REQUEST['upload_code']))after modification upload works well.
@geek-at commented on GitHub (Oct 23, 2016):
thx