Skip to content

Commit

Permalink
CRM-16839: Fix CiviCase Activity status messages / ts() usage - fix h…
Browse files Browse the repository at this point in the history
…ref syntax.
  • Loading branch information
mlutfy committed Jul 13, 2015
1 parent 4e6b530 commit e303faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Case/Form/Activity.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public function preProcess() {
CRM_Core_Error::statusBounce(ts("You can not add another '%1' activity to this case. %2",
array(
1 => $this->_activityTypeName,
2 => ts("Do you want to <a href='%1'>edit the existing activity</a>?", array(1 => $editUrl)),
2 => ts("Do you want to <a %1>edit the existing activity</a>?", array(1 => "href='$editUrl'")),
)
),
$url
Expand Down

0 comments on commit e303faa

Please sign in to comment.