Witam, do php-fusion 7x istnieje taka wtyczka: Last & Next Match Panel
(do pobrania) i występuje w niej taki błąd:
Dodając ostatni mecz, fusion wyświetla błąd w wtyczce:
templates/adminLast.phtml
Undefined index: end Linia: 58
(IMG:
http://files.tinypic.pl/i/00545/vbsegx566bgc.png)
Kod:
<?php require('adminMenu.phtml'); ?>
<?php if(!isset($errors) and
$result): ?> <div class="message success"><p>
<?php echo $locale['LN214'] ?></p></div>
<?php elseif(isset($errors)): ?> <div class="message failed">
<p>
<?php echo $locale['LN215'] ?></p>
<ul>
<?php foreach($errors as $error): ?>
<li>
<?php echo $error ?></li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>
<div class="admin-last">
<form method="post" action="">
<div class="last-fields">
<label>
<?php echo $locale['LN205'] ?><span style="color: #fd3d3d"> * </span>:</label>
<input type="text" name="home" class="textbox" id="logo-team" size="30" value="
<?php echo $lastMatch['home'] ?>">
<img src="
<?php echo $last->getTeamLogo($lastMatch['home'], $imgFolder) ?>" alt="
<?php echo $lastMatch['home'] ?>" height="17px" class="home logo-preview">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN206'] ?><span style="color: #fd3d3d"> * </span>:</label>
<input type="text" name="away" class="textbox" id="logo-team" size="30" value="
<?php echo $lastMatch['away'] ?>">
<img src="
<?php echo $last->getTeamLogo($lastMatch['away'], $imgFolder) ?>" alt="
<?php echo $lastMatch['away'] ?>" height="17px" class="away logo-preview">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN207'] ?><span style="color: #fd3d3d"> * </span>:</label>
<input type="text" name="score" size="30" class="textbox" value="
<?php echo $lastMatch['score'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN208'] ?>:</label>
<input type="text" name="half-score" class="textbox" size="30" value="
<?php echo $lastMatch['half_score'] ?>">
<img src="../images/ico_info.png" height="17px" class="info-field" alt="
<?php echo $locale['LN237'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN209'] ?><span style="color: #fd3d3d"> * </span>:</label>
<input id="match-date" type="text" name="date" class="textbox" size="30" value="
<?php echo $lastMatch['date'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN239'] ?>:</label>
<input id="match-time" type="text" name="time" class="textbox" size="30" value="
<?php echo $lastMatch['time'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN210'] ?>:</label>
<input type="text" name="type" class="textbox" size="30" value="
<?php echo $lastMatch['type'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN234'] ?>:</label>
<input type="text" name="relation" class="textbox" size="30" value="
<?php echo $lastMatch['relation'] ?>">
<img src="../images/ico_info.png" height="17px" class="info-field" alt="
<?php echo $locale['LN238'] ?>">
</div>
<div class="last-fields">
<label>
<?php echo $locale['LN211'] ?>:<br>
<span>
<?php echo $locale['LN212'] ?></span>
</label><textarea rows="5" cols="27" name="scores" class="textbox">
<?php echo str_replace("\'", "'", $lastMatch['goalscorers']); ?></textarea>
</div>
<div class="last-button">
<input type="hidden" name="end" value="
<?php echo $lastMatch['end'] ?>"/>
<p><span style="color: #fd3d3d"> * </span> -
<?php echo $locale['LN220'] ?></p>
<input type="submit" value="
<?php echo $locale['LN213'] ?>" name="ok" class="button">
</div>
</form>
</div>
<?php include('adminFooter.phtml') ?>
Czy da radę naprawić ten błąd?