I noticed one thing, that there was no delete link for the templates in the template list. This got annoying when I added templates and wanted to delete them later, so I made a fix.
Note:
When you click delete, it will ask you if you want to revert the template, if you choose yes, it will delete it and you can't get it back.
in includes/adminfunctions_templates.php find:
PHP Code:
case $styleid: // template is customized for this specific style
return "$indent<li class=\"col-c\">$template[title]" .
construct_link_code($vbphrase['edit'], "template.php?$session[sessionurl]do=edit&templateid=$template[templateid]&dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['revert'], "template.php?$session[sessionurl]do=delete&templateid=$template[templateid]&dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['view_original'], "template.php?$session[sessionurl]do=view&title=" . urlencode($template['title']), 1).
"</li>\n";
and replace it with:
PHP Code:
case $styleid: // template is customized for this specific style
return "$indent<li class=\"col-c\">$template[title]" .
construct_link_code($vbphrase['edit'], "template.php?$session[sessionurl]do=edit&templateid=$template[templateid]&dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['revert'], "template.php?$session[sessionurl]do=delete&templateid=$template[templateid]&dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['delete'], "template.php?$session[sessionurl]do=delete&templateid=$template[templateid]&dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['view_original'], "template.php?$session[sessionurl]do=view&title=" . urlencode($template['title']), 1).
"</li>\n";
Thats all.