Skip to content
Snippets Groups Projects
Commit 412cee02 authored by Thom's avatar Thom :tools:
Browse files

Fix proxy re-sets to No redirect (#6086)

parent 07dcf84b
No related branches found
No related tags found
No related merge requests found
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
jQuery('#redirect_type option[value="redirect"]').hide(); jQuery('#redirect_type option[value="redirect"]').hide();
jQuery('#redirect_type option[value="permanent"]').hide(); jQuery('#redirect_type option[value="permanent"]').hide();
//jQuery('#redirect_type option[value="proxy"]').hide(); //jQuery('#redirect_type option[value="proxy"]').hide();
if(selected != "no" && selected != "" && selected != "R" && selected != "L" && selected != "R,L" && selected != "R=301,L") jQuery('#redirect_type option[value="no"]').attr('selected', 'selected'); if(selected != "no" && selected != "" && selected != "R" && selected != "L" && selected != "R,L" && selected != "R=301,L" && selected != "proxy") jQuery('#redirect_type option[value="no"]').attr('selected', 'selected');
jQuery('.nginx').hide(); jQuery('.nginx').hide();
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment