1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +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). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/prefs.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/prefs.php,v $
| $Revision: 1.4 $ | $Revision: 1.5 $
| $Date: 2007-06-29 20:13:57 $ | $Date: 2007-07-18 20:20:20 $
| $Author: e107steved $ | $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> <td style='width:50%; text-align:right' class='forumheader3'>{$auth_dropdown}</td>
</tr> </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(); $text .= pref_submit();

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_files/def_e107_prefs.php,v $ | $Source: /cvs_backup/e107_0.8/e107_files/def_e107_prefs.php,v $
| $Revision: 1.2 $ | $Revision: 1.3 $
| $Date: 2007-05-28 09:37:27 $ | $Date: 2007-07-18 20:20:20 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -159,7 +159,8 @@ City, State, Country
'developer' => '0', 'developer' => '0',
'download_email' => '0', 'download_email' => '0',
'comments_disabled' => '0', 'comments_disabled' => '0',
'memberlist_access' => '253' 'memberlist_access' => '253',
'check_updates' => '0'
); );
?> ?>

View File

@@ -12,8 +12,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_prefs.php,v $ | $Source: /cvs_backup/e107_0.8/e107_languages/English/admin/lan_prefs.php,v $
| $Revision: 1.4 $ | $Revision: 1.5 $
| $Date: 2007-05-28 09:37:35 $ | $Date: 2007-07-18 20:20:27 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -186,5 +186,6 @@ define("PRFLAN_169", "If the chosen group contains more than one person, the use
define("PRFLAN_170", "Use reverse DNS to allow host banning"); define("PRFLAN_170", "Use reverse DNS to allow host banning");
define("PRFLAN_171", "Turning this option on will allow you to ban users by hostname, rather then just IP or email address. <br />NOTE: This may affect pageload times on some hosts"); define("PRFLAN_171", "Turning this option on will allow you to ban users by hostname, rather then just IP or email address. <br />NOTE: This may affect pageload times on some hosts");
define("PRFLAN_172", "Login Name maximum length (10..100)"); define("PRFLAN_172", "Login Name maximum length (10..100)");
define("PRFLAN_173", "Check at SourceForge for E107 updates once/day");
?> ?>