* Fix bug #25063.
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
.c-id {width: 50px;}
|
||||
.c-reason {width: 150px;}
|
||||
td[id^="duplicateStoryBox"].required:after {top: 6px; right: 2px;}
|
||||
|
||||
@@ -1692,7 +1692,7 @@ class storyModel extends model
|
||||
}
|
||||
else
|
||||
{
|
||||
return print(js::error('story#' . $storyID . dao::getError(true)));
|
||||
helper::end(js::error('story#' . $storyID . dao::getError(true)));
|
||||
}
|
||||
if(!dao::isError()) $this->loadModel('score')->create('story', 'close', $storyID);
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
<td class='pd-0'>
|
||||
<?php echo html::select("closedReasons[$storyID]", $reasonList, 'done', "class=form-control onchange=setDuplicateAndChild(this.value,$storyID) style='min-width: 80px'");?>
|
||||
</td>
|
||||
<td class='pd-0' id='<?php echo 'duplicateStoryBox' . $storyID;?>' <?php if($story->closedReason != 'duplicate') echo "style='display:none'";?>>
|
||||
<td class='pd-0 required' id='<?php echo 'duplicateStoryBox' . $storyID;?>' <?php if($story->closedReason != 'duplicate') echo "style='display:none'";?>>
|
||||
<?php echo html::input("duplicateStoryIDList[$storyID]", '', "class='form-control' placeholder='{$lang->idAB}'");?>
|
||||
</td>
|
||||
<td class='pd-0' id='<?php echo 'childStoryBox' . $storyID;?>' <?php if($story->closedReason != 'subdivided') echo "style='display:none'";?>>
|
||||
|
||||
Reference in New Issue
Block a user