Index: mythweb/settings_mythweb.php
===================================================================
RCS file: /var/lib/mythcvs/mythweb/settings_mythweb.php,v
retrieving revision 1.11
diff -u -r1.11 settings_mythweb.php
--- mythweb/settings_mythweb.php	16 Feb 2005 04:02:40 -0000	1.11
+++ mythweb/settings_mythweb.php	20 Feb 2005 17:45:59 -0000
@@ -110,31 +110,4 @@
         echo "<option value='NO'".($si=='YES'?'':' SELECTED').">".t('No')."</option>\n";
         echo '</select>';
     }
-
-    /*
-    unit_select:
-    displays a <select> for the unit type
-    */
-    function unit_select() {
-        echo '<select name="siunits">';
-        if(!$_SESSION['siunits'])
-        {
-            $result = mysql_query('SELECT * FROM settings WHERE value="SIUnits"')
-            or trigger_error('SQL Error: '.mysql_error(), FATAL);
-
-            $row = mysql_fetch_assoc($result);
-            $si = $row["data"];
-            $_SESSION['siunits'] = $si;
-
-            mysql_free_result($result);
-        }
-        else
-        {
-            $si = $_SESSION['siunits'];
-        }
-
-        echo "<option value='YES'".($si=='YES'?' SELECTED':'').">".t('Yes')."</option>\n";
-        echo "<option value='NO'".($si=='YES'?'':' SELECTED').">".t('No')."</option>\n";
-        echo '</select>';
-    }
 ?>
