Changeset 186 for trunk/phpbms/modules/base/adminsettings.php
- Timestamp:
- 02/16/07 11:59:50 (5 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/base/adminsettings.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/adminsettings.php
r155 r186 157 157 <div class="fauxP"> 158 158 <br />Printed Logo 159 <div id="graphicHolder"><img src="<?php echo $_SESSION["app_path"]?>dbgraphic.php?t=files&f=file&mf=type&r=1"></div>159 <div id="graphicHolder"><img alt="logo" src="<?php echo $_SESSION["app_path"]?>dbgraphic.php?t=files&f=file&mf=type&r=1" /></div> 160 160 </div> 161 161 … … 181 181 if ($entry!="." and $entry!=".." and is_dir($thedir."/".$entry)) { 182 182 echo "<option value=\"".$entry."\""; 183 if($entry==$_SESSION["stylesheet"]) echo " selected ";183 if($entry==$_SESSION["stylesheet"]) echo " selected=\selected\" "; 184 184 echo ">".$entry."</option>"; 185 185 } … … 190 190 </p> 191 191 </fieldset> 192 192 <fieldset> 193 <legend>Localization</legend> 194 <p> 195 <label for="">phone format</label><br /> 196 <select id="sphone_format" name="sphone_format"> 197 <option value="US - Strict" <?php if($_SESSION["phone_format"]=="US - Strict") echo "selected=\selected\"";?>>US - Strict</option> 198 <option value="US - Loose" <?php if($_SESSION["phone_format"]=="US - Loose") echo "selected=\selected\"";?>>US - Loose</option> 199 </select> 200 </p> 201 </fieldset> 193 202 <?php 194 203 $querystatement="SELECT name FROM modules WHERE name!=\"base\" ORDER BY name";