Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/views/developers/versions_edit.thtml
diff options
context:
space:
mode:
Diffstat (limited to 'site/app/views/developers/versions_edit.thtml')
-rw-r--r--site/app/views/developers/versions_edit.thtml8
1 files changed, 2 insertions, 6 deletions
diff --git a/site/app/views/developers/versions_edit.thtml b/site/app/views/developers/versions_edit.thtml
index 55e8517..7dc0f76 100644
--- a/site/app/views/developers/versions_edit.thtml
+++ b/site/app/views/developers/versions_edit.thtml
@@ -76,7 +76,7 @@
echo '<table id="files-table" class="pretty-table">';
echo '<thead><tr>';
echo '<th>'.___('devcp_versions_edit_th_file').'</th>';
- echo '<th>'.___('devcp_versions_edit_th_platform').'</th>';
+ echo '<th>'.'</th>';
echo '<th>'.___('devcp_versions_edit_th_size').'</th>';
echo '<th>'.___('devcp_versions_edit_th_status').'</th>';
echo '<th style="width: 25px;"></th>';
@@ -87,11 +87,7 @@
echo '<td>';
echo '<input type="hidden" name="data[File]['.$file['id'].'][delete]" value="0" class="delete"/>';
echo '<a href="'.$html->urlFile($file['id'], $file['filename']).'" class="filelink">'.$file['filename'].'</a></td>';
- echo '<td><select name="data[File]['.$file['id'].'][platform_id]">';
- foreach ($platforms as $platform_id => $platform_name) {
- echo '<option value="'.$platform_id.'"'.($file['platform_id'] == $platform_id ? ' selected="selected"' : '').'>'.$platform_name.'</option>';
- }
- echo '</select></td>';
+ echo '<td/>';
echo '<td>'.sprintf(_('size_kb'), $file['size']).'</td>';
echo '<td>'.$statuses[$file['status']].'</td>';
echo '<td><div class="inline-delete-button uses-image">';