Index: potx.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/potx/Attic/potx.module,v retrieving revision 1.1.2.12.2.2.2.10 diff -u -p -r1.1.2.12.2.2.2.10 potx.module --- potx.module 13 Mar 2009 10:13:14 -0000 1.1.2.12.2.2.2.10 +++ potx.module 26 May 2009 04:27:15 -0000 @@ -275,7 +275,7 @@ function _potx_form_id($type, $path) { function _potx_component_list() { $components = array(); // Get a list of all enabled modules and themes. - $result = db_query("SELECT name, filename, type, status FROM {system} WHERE type IN ('module', 'theme') AND status = 1 ORDER BY filename ASC"); + $result = db_query("SELECT name, filename, type, status FROM {system} WHERE type IN ('module', 'theme') ORDER BY filename ASC"); while ($component = db_fetch_object($result)) { // Build directory tree structure. $path_parts = explode('/', dirname($component->filename));