Skip to content
Snippets Groups Projects
Commit 20c876f3 authored by JediKev's avatar JediKev
Browse files

issue: Remove Referral Borked

This addresses an issue where removing a Referral from the Manage Referrals
modal just loads and loads, never actually removing the referral. This is
due to the AJAX URL containing an extra `/` causing an "Unsupported URL"
error.
parent 460b445f
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ $manage = (!$target); ...@@ -77,7 +77,7 @@ $manage = (!$target);
<form class="mass-action" method="post" <form class="mass-action" method="post"
name="referrals" name="referrals"
id="rf" id="rf"
action="<?php echo sprintf('#/tickets/%d/referrals', $ticket->getId()); ?>"> action="<?php echo sprintf('#tickets/%d/referrals', $ticket->getId()); ?>">
<input type='hidden' name='do' value='manage'> <input type='hidden' name='do' value='manage'>
<table width="100%"> <table width="100%">
<tbody> <tbody>
......
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