Patch php5ts.dll for Reproducible crash Bug #61577
Patch version 2013-01-29 02:05 UTC
Return to Bug #61577 |
Download this patch
Patch Revisions:
Developer: tranthanh098@gmail.com
<div id="contentPopup" style="width:556px;min-height:200px;display:none;">
<div id="content-table-inner">
<div id="table-content">
<table border="0" width="100%" cellpadding="0" cellspacing="0" id="product-table">
<tr>
<th class="table-header-repeat line-left" style="color:white;width:30px !important;"><a href="">ID</a></th>
<th class="table-header-repeat line-left" style="color:white;width:30px !important;"><a href="">STT</a></th>
<th class="table-header-repeat line-left minwidth-1"><a href="">Tiêu đề</a></th>
<th class="table-header-repeat line-left"><a href="">Ngôn ngữ</a></th>
</tr>
<?php
$stt = 0;
$color='#F0F2F2';
foreach($catVideos as $catVideo)
{
?>
<tr bgcolor='<?php if($stt%2 == 0) echo $color; ?>' >
<td><?php echo $catVideo['cat_video_id']; ?></td>
<td><?php echo $catVideo['sort_order']; ?></td>
<td><a href="#" onclick="return getId('<?php echo $catVideo['cat_video_id']; ?>', '<?php echo $catVideo['name']; ?>');"><?php echo $catVideo['name'];?></td>
<td><?php echo $catVideo['nameLang'];?></td>
</tr>
<?php
$stt++;
}
?>
</table>
</div>
<div class="clear"></div>
</div>
</div>
|