Skip to content

Commit

Permalink
Fixed issue: Should not be possible to change ranking columns when su…
Browse files Browse the repository at this point in the history
…rvey is active
  • Loading branch information
olleharstedt authored and LouisGac committed Aug 28, 2017
1 parent 3f57f03 commit 61a2b94
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -46,7 +46,7 @@
<!-- Input -->
<div class="">
<?php
if ($aAttribute['readonly'] && $bIsActive)
if (($aAttribute['readonly'] || isset($aAttribute['readonly_when_active']) && $aAttribute['readonly_when_active']) && $bIsActive)
{
echo $aAttribute['value'];
}
Expand Down

0 comments on commit 61a2b94

Please sign in to comment.