* set onlybody=true in colorbox.

This commit is contained in:
chencongzhi520@gmail.com
2013-02-19 07:37:45 +00:00
parent 7427704392
commit 10818ccdff
8 changed files with 16 additions and 20 deletions
+2 -4
View File
@@ -65,9 +65,7 @@
<div class='contentDiv'>
<table class='f-left table-1 fixed' id='story'>
<?php foreach($stories as $key => $story):?>
<?php
$storyLink = $this->createLink('story', 'view', "storyID=$story->id");
?>
<?php $storyLink = $this->createLink('story', 'view', "storyID=$story->id", '', true); ?>
<tr class='a-center'>
<td class='w-id a-left'>
<input type='checkbox' name='stories[]' value="<?php echo $story->id;?>" <?php if($story->stage == 'developed' or $story->status == 'closed') echo 'checked';?>> <?php echo sprintf('%03d', $story->id);?>
@@ -103,7 +101,7 @@
<div class='contentDiv'>
<table class='f-left table-1 fixed' id='bug'>
<?php foreach($bugs as $bug):?>
<?php $bugLink = $this->createLink('bug', 'view', "bugID=$bug->id");?>
<?php $bugLink = $this->createLink('bug', 'view', "bugID=$bug->id", '', true);?>
<tr class='a-center'>
<td class='w-id a-left'>
<input type='checkbox' name='bugs[]' value="<?php echo $bug->id;?>" <?php if($bug->status == 'resolved' or $bug->status == 'closed') echo "checked";?>> <?php echo sprintf('%03d', $bug->id);?>