Changeset 702 for trunk/forum/adm/style/acp_styles.html
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/adm/style/acp_styles.html
r400 r702 21 21 <dl> 22 22 <dt><label for="new_id">{L_REPLACE}:</label><br /><span>{L_REPLACE_EXPLAIN}</span></dt> 23 <dd><select name="new_id">{S_REPLACE_OPTIONS}</select></dd>23 <dd><select id="new_id" name="new_id">{S_REPLACE_OPTIONS}</select></dd> 24 24 </dl> 25 25 … … 55 55 function update_image(newimage) 56 56 { 57 document.getElementById('newimg').src = (newimage) ? '../styles/{A_ NAME}/imageset/' + encodeURI(newimage) : 'images/no_image.png';57 document.getElementById('newimg').src = (newimage) ? '../styles/{A_PATH}/imageset/' + encodeURI(newimage) : 'images/no_image.png'; 58 58 } 59 59 // ]]> … … 136 136 <dl> 137 137 <dt><label for="imgwidth">{L_IMAGE_WIDTH}:</label><br /><span>{L_AUTOMATIC_EXPLAIN}</span></dt> 138 <dd><input type="text" name="imgwidth" value="{IMAGE_SIZE}" /></dd>138 <dd><input id="imgwidth" type="text" name="imgwidth" value="{IMAGE_SIZE}" /></dd> 139 139 </dl> 140 140 <dl> 141 141 <dt><label for="imgheight">{L_IMAGE_HEIGHT}:</label><br /><span>{L_AUTOMATIC_EXPLAIN}</span></dt> 142 <dd><input type="text" name="imgheight" value="{IMAGE_HEIGHT}" /></dd>142 <dd><input id="imgheight" type="text" name="imgheight" value="{IMAGE_HEIGHT}" /></dd> 143 143 </dl> 144 144 </div> … … 267 267 <p>{L_TEMPLATE_CACHE_EXPLAIN}</p> 268 268 269 <form name="acp_styles" method="post" action="{U_ACTION}">269 <form id="acp_styles" method="post" action="{U_ACTION}"> 270 270 <fieldset class="tabulated"> 271 271 <legend>{L_TEMPLATE_CACHE}</legend> … … 456 456 <dl> 457 457 <dt><label for="name">{L_NAME}:</label></dt> 458 <dd><!-- IF S_INSTALL -->< b id="name">{NAME}</b><!-- ELSE --><input type="text" id="name" name="name" value="{NAME}" /><!-- ENDIF --></dd>458 <dd><!-- IF S_INSTALL --><strong id="name">{NAME}</strong><!-- ELSE --><input type="text" id="name" name="name" value="{NAME}" /><!-- ENDIF --></dd> 459 459 </dl> 460 460 <dl> 461 461 <dt><label for="copyright">{L_COPYRIGHT}:</label></dt> 462 <dd><!-- IF S_INSTALL -->< b id="copyright">{COPYRIGHT}</b><!-- ELSE --><input type="text" id="copyright" name="copyright" value="{COPYRIGHT}" /><!-- ENDIF --></dd>462 <dd><!-- IF S_INSTALL --><strong id="copyright">{COPYRIGHT}</strong><!-- ELSE --><input type="text" id="copyright" name="copyright" value="{COPYRIGHT}" /><!-- ENDIF --></dd> 463 463 </dl> 464 464 <!-- IF S_SUPERTEMPLATE --> 465 465 <dl> 466 466 <dt><label for="inheriting">{L_INHERITING_FROM}:</label></dt> 467 <dd>< b id="inheriting">{S_SUPERTEMPLATE}</b></dd>467 <dd><strong id="inheriting">{S_SUPERTEMPLATE}</strong></dd> 468 468 </dl> 469 469 <!-- ENDIF --> … … 471 471 <dl> 472 472 <dt><label for="template_id">{L_STYLE_TEMPLATE}:</label></dt> 473 <dd><!-- IF S_INSTALL -->< b id="template_id">{TEMPLATE_NAME}</b><!-- ELSE --><select id="template_id" name="template_id">{S_TEMPLATE_OPTIONS}</select><!-- ENDIF --></dd>473 <dd><!-- IF S_INSTALL --><strong id="template_id">{TEMPLATE_NAME}</strong><!-- ELSE --><select id="template_id" name="template_id">{S_TEMPLATE_OPTIONS}</select><!-- ENDIF --></dd> 474 474 </dl> 475 475 <dl> 476 476 <dt><label for="theme_id">{L_STYLE_THEME}:</label></dt> 477 <dd><!-- IF S_INSTALL -->< b id="theme_id">{THEME_NAME}</b><!-- ELSE --><select id="theme_id" name="theme_id">{S_THEME_OPTIONS}</select><!-- ENDIF --></dd>477 <dd><!-- IF S_INSTALL --><strong id="theme_id">{THEME_NAME}</strong><!-- ELSE --><select id="theme_id" name="theme_id">{S_THEME_OPTIONS}</select><!-- ENDIF --></dd> 478 478 </dl> 479 479 <dl> 480 480 <dt><label for="imageset_id">{L_STYLE_IMAGESET}:</label></dt> 481 <dd><!-- IF S_INSTALL -->< b id="imageset_id">{IMAGESET_NAME}</b><!-- ELSE --><select id="imageset_id" name="imageset_id">{S_IMAGESET_OPTIONS}</select><!-- ENDIF --></dd>481 <dd><!-- IF S_INSTALL --><strong id="imageset_id">{IMAGESET_NAME}</strong><!-- ELSE --><select id="imageset_id" name="imageset_id">{S_IMAGESET_OPTIONS}</select><!-- ENDIF --></dd> 482 482 </dl> 483 483 <!-- ENDIF -->
Note:
See TracChangeset
for help on using the changeset viewer.