I was troubled by the lack of information about classifieds on the page my users see when they wish to "add content" for the site. When I looked into the ed_classified.module file I found the following, which looked ok at first glance:

/**
 * Implementation of hook_help().
 */
function ed_classified_help($section) {
  switch ($section) {
  case 'admin/help#classified':
    return t('You can manage current classified ads using this page.');
  case 'admin/modules#description':
    return t('Classified Ad module');
  case 'node/add#classified':
    return t('Create a classified ad.');
    // OPTIONAL: Add additional cases for other paths that should display help text.
  }
}

But, I took a shot at changing "case 'node/add#classified':" to "case 'node/add#ed_classified':" and the missing text suddenly appeared.

Comments

mcurry’s picture

Status: Active » Fixed

Thanks for the info.

According to the CVS logs, this was fixed in the 1.1.2.8 commit in the Drupal-4-7 branch.

http://cvs.drupal.org/viewcvs/drupal/contributions/modules/ed_classified...

- Please verify the ed_classified.module version in use (if you don't mind, paste the $Id$ comment from the top of the module.

- Please try the latest 4.7 release.

jenlampton’s picture

You're right, the last commit was on the 24th, I'm using a file from the eleventh. Amazing how fast new stuff gets old! here's the ID from my ed_classified.module file:

// $Id: ed_classified.module,v 1.1 2007/02/11 22:16:51 inactivist Exp $

Thanks for the quick attention!

mcurry’s picture

No problem - lots of changes in the last week. The pace of changes will slow a bit... but it's always a good idea to check the latest release / dev build.

Actually, I have instructions to try the latest release/CVS version at the top of the issue entry form, but I'm not sure it's noticeable. :D (I'm not sure that it's all that visible to users.)

Bottom line, I'm very happy that you are looking at the code - that's more that I can ask for...

Cheers!

jenlampton’s picture

Of course I'm looking at the code! That's the beauty of open source :-)

mcurry’s picture

Keep watching... I'm sure I've added a few bugs since 1.1... (and fixed a few, and added some new features.) More to come...

If you start using this module on a production site, would you mind pinging me so I can see how it looks? I know what I've done with the module, but I'd like to know how it's being used elsewhere in the real world.

jenlampton’s picture

sure thing... We're still in dev right now but once the site launches you'll be able to see it at www.aboutkensington.net

Anonymous’s picture

Status: Fixed » Closed (fixed)