Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Message from discussion Plugin update & security / privacy
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alex Günsche  
View profile  
 More options Sep 23 2007, 10:57 am
From: Alex Günsche <ag.ml2...@zirona.com>
Date: Sun, 23 Sep 2007 16:57:47 +0200
Local: Sun, Sep 23 2007 10:57 am
Subject: RE: [wp-hackers] Plugin update & security / privacy

On Sun, 2007-09-23 at 08:37 -0400, Jamie Holly wrote:
> We were discussing this on a political blogger mailing list I am on. There
> are about 30 WP users on that list. As of this morning, 18 of them said they
> will not be moving to WP 2.3 solely because of this.

Ok, before you guys don't upgrade at all, here's a little plugin which
will completely(!) suppress the version checker.

------- SNIP -------
<?php
/*
Plugin Name: No Update Checker
Description: *Very* rough hack to suppress the WordPress update checker.
Version: 0.1
*/

function noupdatechecker()
{
   if ( !defined('WP_INSTALLING') )
      define('WP_INSTALLING', true);

}

add_action('init', 'noupdatechecker', 9);
?>
------- SNIP -------

Save the above as noupdatechecker.php (or whatever) in
wp-content/plugins/. No whitespace must be outside the PHP tags! Then
activate the plugin in the admin panel.

Note: The plugin deactivates the version checker by defining
WP_INSTALLING, a constant that is used in other parts of the core, too.
I had a quick grep, looked at the respective positions, and tested the
associated WP features -- the normal functioning of WordPress seems not
to be impacted by this hack. Anyway, if strange things happen due to its
usage, let me know. Feedback is apprechiated (e-mail me).

Kind regards,
Alex

--
Alex Günsche, Zirona OpenSource-Consulting
Blogs: http://www.zirona.com/ | http://www.regularimpressions.net
PubKey for this address: http://www.zirona.com/misc/ag.ml2007.asc

_______________________________________________
wp-hackers mailing list
wp-hack...@lists.automattic.com
http://lists.automattic.com/mailman/listinfo/wp-hackers


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.