This patch should allow the comment approval module to run on Drupal 5.x
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | commentapproval_0.patch | 12.77 KB | mikejoconnor |
| #3 | commentapproval.patch | 12.77 KB | robertdouglass |
| #1 | commentapproval_5upgrade_0.patch | 7.77 KB | mikejoconnor |
| commentapproval_5upgrade.patch | 7.56 KB | mikejoconnor |
Comments
Comment #1
mikejoconnor commentedI updated the menu from admin/approval to admin/content/approval.
Comment #2
robertdouglass commenteduse drupal_add_css and some extra logic to measure the vertical height of comments by linebreaks (for adding scrolling div in approval view). Please note that this applies to DRUPAL-4-7!
Comment #3
robertdouglass commentedahh, the patch.
Comment #4
mikejoconnor commentedChange line 314 from
+ if ($lines > 4 ||Êstrlen($comment) > 512) {
to
+ if ($lines > 4 || strlen($comment) > 512) {
Comment #5
robertdouglass commentedHmmm. Wonder how that got in there. Thanks for catching.
Comment #6
mikejoconnor commentedCommitted