Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MindcrimeNL committed Nov 22, 2012
1 parent bb82603 commit ded7944
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 59 deletions.
2 changes: 1 addition & 1 deletion mods/cups/mods/cups/info.php
Expand Up @@ -43,7 +43,7 @@

$mod_info['name'] = $cs_lang['mod_name'];
$mod_info['version'] = '1.0';
$mod_info['released'] = '2012-10-05';
$mod_info['released'] = '2012-11-22';
$mod_info['creator'] = 'Mindcrime';
$mod_info['team'] = 'Geh aB Clan';
$mod_info['url'] = 'www.gab-clan.org';
Expand Down
3 changes: 2 additions & 1 deletion mods/cups/mods/cups/navlist.php
Expand Up @@ -12,7 +12,8 @@
for ($i = 0; $i < $count_cups; $i++) {
$data['cups'][$i]['view_url'] = cs_url('cups','view','id=' . $data['cups'][$i]['cups_id']);
if (strlen($data['cups'][$i]['cups_name']) > $cs_option['max_headline'])
$data['cups'][$i]['cups_name'] = cs_textcut($data['cups'][$i]['cups_name'], $options['max_headline']);
$data['cups'][$i]['cups_name'] = cs_secure(cs_textcut($data['cups'][$i]['cups_name'], $options['max_headline']));
$data['cups'][$i]['cups_title'] = cs_secure($data['cups'][$i]['cups_name']);
$data['cups'][$i]['cups_start'] = cs_date('unix',$data['cups'][$i]['cups_start']);
}

Expand Down
4 changes: 2 additions & 2 deletions mods/cups/themes/base/cups/match.tpl
Expand Up @@ -11,11 +11,11 @@
<table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
<tr>
<td class="leftc">{icon:personal} {lang:team} 1</td>
<td class="leftb">{match:team1}{if:adminconfirm} ({lang:confirmed}: {match:time1}){stop:adminconfirm}</td>
<td class="leftb">{match:team1}{if:adminconfirm}{if:confirm1} ({lang:confirmed}: {match:time1}){stop:confirm1}{stop:adminconfirm}</td>
</tr>
<tr>
<td class="leftc">{icon:personal} {lang:team} 2</td>
<td class="leftb">{match:team2}{if:adminconfirm} ({lang:confirmed}: {match:time2}){stop:adminconfirm}</td>
<td class="leftb">{match:team2}{if:adminconfirm}{if:confirm2} ({lang:confirmed}: {match:time2}){stop:confirm2}{stop:adminconfirm}</td>
</tr>
<tr>
<td class="leftc">{icon:kreversi} {lang:cup}</td>
Expand Down
55 changes: 0 additions & 55 deletions mods/cups/themes/base/match.tpl

This file was deleted.

0 comments on commit ded7944

Please sign in to comment.