Closed (fixed)
Project:
Job Search
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Jan 2008 at 19:08 UTC
Updated:
14 Feb 2008 at 00:16 UTC
I 've found that user see a few messages (equal number of jobs applying) on the top of a page.
This message is generated in job.module, string #103
101 if (_job_check($node->nid, $user->uid)) {
102 // User has applied for this job
103 drupal_set_message(t('You applied for this job'));
104 return $links;
Why this "drupal_set_message" is in the link hook?
Some trick to change this in my opinion:
101 if (_job_check($node->nid, $user->uid)) {
102 // User has applied for this job
103 $links['job_apply'] = array(
104 'title' => t('You applied for this job'),
105 );
106 return $links;
Comments
Comment #1
kbahey commentedFixed.
Thanks
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.