diff --git a/publication_date.module b/publication_date.module
index 0287bd7..8db707e 100755
--- a/publication_date.module
+++ b/publication_date.module
@@ -17,15 +17,6 @@ function publication_date_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
   switch ($op) {
     case 'load':
       $node->published_at = _publication_date_get_date($node->nid);
-
-      // we have to manage the 'old nodes', i.e nodes that have been published BEFORE the activation
-      // of this module.
-      if (!$node->published_at) {
-        $row = db_fetch_array(db_query("SELECT created, status FROM {node} WHERE nid = %d", $node->nid));
-        if ($row && $row['status'] == 1) {
-          $node->published_at = $row['created'];
-        }
-      }
       break;
     case 'insert':
     case 'update':
