Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/clone/wp-conte.../plugins/ultimate.../template...
File: standings.php
<?php
[0] Fix | Delete
function lcw_load_standings( $standings_list ){
[1] Fix | Delete
ob_start();
[2] Fix | Delete
?>
[3] Fix | Delete
<table class="table table-filter">
[4] Fix | Delete
<thead>
[5] Fix | Delete
<tr>
[6] Fix | Delete
<th>Name</th>
[7] Fix | Delete
<th>POS</th>
[8] Fix | Delete
<th>Played</th>
[9] Fix | Delete
<th>Won</th>
[10] Fix | Delete
<th>Lost</th>
[11] Fix | Delete
<th class="hidden-xs">Tied</th>
[12] Fix | Delete
<th class="hidden-xs">Drawn</th>
[13] Fix | Delete
<th>Points</th>
[14] Fix | Delete
<th>NRR</th>
[15] Fix | Delete
</tr>
[16] Fix | Delete
</thead>
[17] Fix | Delete
<tbody>
[18] Fix | Delete
<?php
[19] Fix | Delete
foreach ($standings_list->teams as $team ) {
[20] Fix | Delete
?>
[21] Fix | Delete
<tr>
[22] Fix | Delete
<td>
[23] Fix | Delete
<div class="media">
[24] Fix | Delete
[25] Fix | Delete
<div class="media-body">
[26] Fix | Delete
<img src="<?php echo $team->logoUrl; ?>" class="media-photo">
[27] Fix | Delete
<span class="media-meta pull-right hidden-xs"><?php echo $team->groupName ?></span>
[28] Fix | Delete
<h4 class="title">
[29] Fix | Delete
<?php echo $team->shortName ?> <span class="hidden-xs">-</span>
[30] Fix | Delete
</h4>
[31] Fix | Delete
<p class="summary hidden-xs"> <?php echo $team->name ?></p>
[32] Fix | Delete
</div>
[33] Fix | Delete
</div>
[34] Fix | Delete
</td>
[35] Fix | Delete
<td><?php echo $team->position ?></td>
[36] Fix | Delete
<td><?php echo $team->played?></td>
[37] Fix | Delete
<td><?php echo $team->won?></td>
[38] Fix | Delete
<td><?php echo $team->lost?></td>
[39] Fix | Delete
<td class="hidden-xs"><?php echo $team->tied?></td>
[40] Fix | Delete
<td class="hidden-xs"><?php echo $team->drawn?></td>
[41] Fix | Delete
<td><?php echo $team->points?></td>
[42] Fix | Delete
<td><?php echo $team->netRunRate?></td>
[43] Fix | Delete
</tr>
[44] Fix | Delete
<?php } ?>
[45] Fix | Delete
</tbody>
[46] Fix | Delete
<tfoot>
[47] Fix | Delete
<tr>
[48] Fix | Delete
<th>Name</th>
[49] Fix | Delete
<th>POS</th>
[50] Fix | Delete
<th>Played</th>
[51] Fix | Delete
<th>Won</th>
[52] Fix | Delete
<th>Lost</th>
[53] Fix | Delete
<th class="hidden-xs">Tied</th>
[54] Fix | Delete
<th class="hidden-xs">Drawn</th>
[55] Fix | Delete
<th>Points</th>
[56] Fix | Delete
<th>NRR</th>
[57] Fix | Delete
</tr>
[58] Fix | Delete
</tfoot>
[59] Fix | Delete
</table>
[60] Fix | Delete
<?php
[61] Fix | Delete
}
[62] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function