1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-20 13:21:54 +02:00

Option to disable update check

This commit is contained in:
e107steved
2007-07-18 20:20:27 +00:00
parent d098e388d6
commit 276f37b9a6
3 changed files with 17 additions and 7 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/prefs.php,v $
| $Revision: 1.4 $
| $Date: 2007-06-29 20:13:57 $
| $Revision: 1.5 $
| $Date: 2007-07-18 20:20:20 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -940,6 +940,14 @@ $text .= "<div id='advanced' style='display:none; text-align:center'>
<td style='width:50%; text-align:right' class='forumheader3'>{$auth_dropdown}</td>
</tr>
<tr>
<td style='width:50%' class='forumheader3'>".PRFLAN_173."<br /><span class='smalltext'>&nbsp;</span></td>
<td style='width:50%; text-align:right' class='forumheader3'>
<input type='radio' name='check_updates' value='1'".($pref['check_updates'] ? " checked='checked'" : "")." /> ".PRFLAN_112."&nbsp;&nbsp;
<input type='radio' name='check_updates' value='0'".(!$pref['check_updates'] ? " checked='checked'" : "")." /> ".PRFLAN_113."
</td>
</tr>
";
$text .= pref_submit();