Hi,
There might be issues with SQL tables and columns missing after the upgrade using the mysql-from-0.90.sql upgrade script. But that can be fixed.
Regarding the question about template, lets see if I can explain this:
In past versions, the php code was using similar code as:
| Code: |
print("<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\">\n");
fPrintFormTextArea($owl_lang->comments . ":", "newcomment", $sCommentValue, 15,80);
print("<tr>\n");
print("<td class=\"form1\">");
|
The new code looks like:
| Code: |
$xtpl->assign('FILE_COMMENT_LABEL', $owl_lang->comments);
$xtpl->assign('FILE_COMMENT_VALUE', $sCommentValue);
|
AND the HTML was moved to a new file, and the contents of that file are more HTML Like
| Code: |
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="form1">{FILE_COMMENT_LABEL}</td>
<td class="form1" width="100%"><textarea class="ftext1" name="newcomment" rows="15" cols="80">{FILE_COMMENT_VALUE}</textarea></td>
</tr>
|
AT Run Time owl replaces {FILE_COMMENT_LABEL} With actual values.
So this should make it much easier for anyone to make changes to the LOOK and feel
Regards,
B0zz