It looks like comments are currently allowed on new project pages. Eg look at the project page for http://drupal.org/project/imce_wysiwyg (which was only created yesterday) and you will see that it is possible to add a comment at the bottom.

Is this a change from the original d.o or do you need to adjust (restrict) the comment settings on this particular content type?

Comments

gábor hojtsy’s picture

Status: Active » Fixed

Disabled commenting on http://drupal.org/admin/content/node-type/project-project

I've also disabled commenting on this project you mention and found these additional projects which have commenting on:

select nid, title, comment from node where comment != 0 and type ='project_project';
+--------+------------------------------------------------------------------------------------------+---------+
| nid    | title                                                                                    | comment |
+--------+------------------------------------------------------------------------------------------+---------+
|   3257 | Node Aggregator                                                                          |       2 | 
|   3264 | Logo                                                                                     |       2 | 
|   3295 | Sitemap                                                                                  |       2 | 
|   3321 | Weblink                                                                                  |       2 | 
|  24696 | Tagadelic                                                                                |       2 | 
|  27518 | shazamgallery                                                                            |       2 | 
|  28055 | Xstatistics                                                                              |       2 | 
|  29296 | argeebee                                                                                 |       2 | 
|  31736 | betterupload                                                                             |       2 | 
|  77093 | Refine by taxonomy                                                                       |       2 | 
|  99368 | Sympal Theme                                                                             |       2 | 
| 241143 | Custom vote                                                                              |       2 | 
| 376954 | Content Compose                                                                          |       2 | 
| 377172 | Quickbooks Time Tracking                                                                 |       2 | 
| 377278 | ec_ClickandBuy payment module for Drupal eCommerce                                       |       2 | 
| 377322 | Node Parameter Control                                                                   |       2 | 
| 377416 | Comment Login                                                                            |       2 | 
| 377536 | wyo theme                                                                                |       2 | 
| 377690 | UC Gift Certificate                                                                      |       2 | 
| 377794 | Panels Sections                                                                          |       2 | 
| 377930 | Registration Language                                                                    |       2 | 
| 377938 | Easy Login                                                                               |       2 | 
| 377992 | Talkinator                                                                               |       2 | 
| 378290 | Riebel Theme                                                                             |       2 | 
| 378452 | GeoIP API                                                                                |       2 | 
| 378506 | Smooth Blue                                                                              |       2 | 
| 379028 | Style Switcher                                                                           |       2 | 
| 379032 | Ubercart Discounts (Alternative)                                                         |       2 | 
| 379044 | Ubercart Referrals                                                                       |       2 | 
| 379190 | Simple CDN                                                                               |       2 | 
| 379248 | Web File Manager Statistics                                                              |       2 | 
| 379256 | Views: Latest Post(s)                                                                    |       2 | 
| 379590 | FeedAPI Extensible Parser                                                                |       2 | 
| 379804 | UberDrupal                                                                               |       2 | 
| 379848 | UC Store Credit                                                                          |       2 | 
| 379870 | Maya Date                                                                                |       2 | 
| 379908 | Internet Blackout NZ                                                                     |       2 | 
| 379950 | AHAH Edit Node In Place                                                                  |       2 | 
| 379994 | Plainscape                                                                               |       2 | 
| 380030 | ec_worldpay Junior select and FuturePay recurring payments integration with Worldpay.com |       2 | 
| 380172 | User Import Organic Groups                                                               |       2 | 
| 380444 | Digital Currency                                                                         |       2 | 
| 380518 | Inline Errors                                                                            |       2 | 
+--------+------------------------------------------------------------------------------------------+---------+
43 rows in set (0.02 sec)

Fixed all the recent nodes to not allow comments:

update node set comment = 0 where nid > 376953 and type = 'project_project' and comment = 2;
Query OK, 31 rows affected (0.10 sec)
Rows matched: 31  Changed: 31  Warnings: 0

This only left us with these 12 older projects with comments:

select nid, title, comment from node where comment != 0 and type ='project_project';
+--------+--------------------+---------+
| nid    | title              | comment |
+--------+--------------------+---------+
|   3257 | Node Aggregator    |       2 | 
|   3264 | Logo               |       2 | 
|   3295 | Sitemap            |       2 | 
|   3321 | Weblink            |       2 | 
|  24696 | Tagadelic          |       2 | 
|  27518 | shazamgallery      |       2 | 
|  28055 | Xstatistics        |       2 | 
|  29296 | argeebee           |       2 | 
|  31736 | betterupload       |       2 | 
|  77093 | Refine by taxonomy |       2 | 
|  99368 | Sympal Theme       |       2 | 
| 241143 | Custom vote        |       2 | 
+--------+--------------------+---------+
12 rows in set (0.02 sec)

Since these are pre-upgrade, I'm leaving them as they are.

Status: Fixed » Closed (fixed)
Issue tags: -drupal.org upgrade

Automatically closed -- issue fixed for 2 weeks with no activity.

Project: Drupal.org infrastructure » Drupal.org customizations
Component: Drupal.org module » Miscellaneous