another idea for an update
what I miss is the possibility to create categories
for example a Sceneries where all credits regarding sceneries can be listed in
otherwise it is great
PS:
small tip for other users
if you add this at this scripts at the top of admin/templates/credits/credit_create.tpl and credit_edit.tpl
<script type="text/javascript" src="<?php echo SITE_URL.'/lib/js/jqModal.js'; ?>"></script>
<script type="text/javascript" src="<?php echo SITE_URL.'/lib/js/ckeditor/ckeditor.js'; ?>"></script>
<script type="text/javascript" src="<?php echo SITE_URL?>/admin/lib/phpvmsadmin.js"></script>
and replace the code for the description with that from below for credit_create.tpl
<tr>
<td>Description</td>
<td><textarea id="editor" name="description" rows="4" cols="42" class="tinymce"><?php
if(isset($credit))
{echo $credit['description'];}
?></textarea></td>
</tr>
and following for credit_edit.tpl
<tr>
<td>Description</td>
<td><textarea id="editor" name="description" rows="4" cols="42" class="tinymce" ><?php
echo $credit->description;
?></textarea></td>
</tr>
this way you can easily integrate tinymce editor which makes it easier to edit texts
but always make a backup of the original file!
best regards,
Thomas