Closed (fixed)
Project:
Aegir Hosting Tasks Extra
Version:
7.x-3.x-dev
Component:
Sync
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Feb 2016 at 19:17 UTC
Updated:
2 Feb 2017 at 10:54 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
ybabel commentedOk now I have a clue : it's the "A custom Drush alias" code that interferes with those of the other sources.
wether its drush alias that works, wether it's platforms sites, but not both of them
Comment #3
ybabel commentedProposed patch, changing the order make it works ...
Comment #4
ybabel commentedComment #5
helmo commentedI don't like having the custom source as the first option.
We'll have to find a way to get the value of $form['source']['custom_alias']['text'] into another place.
Comment #6
helmo commentedComment #7
szeidler commentedI also ran into that issue.
For future reference: You can workaround the issue, using the drush alias you initially wanted to select in the custom alias field, till there will be any progress here.
Comment #8
grimreaperHello,
Here is a patch that fix the issue.
The problem is that the value of the hidden textfield is always send in the POST request when submitting the form. So it is an empty value.
A disabled textfield is not sent in the POST values, so disabling the textfield with the states API solved the problem.
Thanks for the review.
Comment #10
helmo commentedThanks, that solved it. Committed.
Comment #11
grimreaperThanks for the commit.