~sense/ubuntu-wanted/drupal6-migration

« back to all changes in this revision

Viewing changes to module/wanted/themes/wanted/task/default.php

  • Committer: Sense Hofstede
  • Date: 2009-03-22 12:38:25 UTC
  • mfrom: (15.1.11 qevel)
  • Revision ID: sense@qense.nl-20090322123825-kxopq3eto0s5o968
* Skill overview page added
* Pagination now works (LP:332941)
* Skill lists are now properly ordered(LP:332439)
* Some too generic class names were adapted to prevent name collision in case another module uses the same name (Thanks to Sayak Banerjee for finding this one)
* The usual typos, small problems and error were solved

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
                                        $exp = "Expert";
184
184
                                break;
185
185
                        }
186
 
                        $assigned_skills[$skill_slug] = "<tr>\n<td><a href=\"".$GLOBALS['basemodule_url']."/wanted/skill/".$skill_slug."\" title=\"".$data['skill'][$skill_id]['description']."\">".$data['skill'][$skill_id]['name']."</a></td>\n
 
186
                        $assigned_skills[$data['skill'][$skill_id]['name']] = "<tr>\n<td><a href=\"".$GLOBALS['basemodule_url']."/wanted/skill/".$skill_slug."\" title=\"".$data['skill'][$skill_id]['description']."\">".$data['skill'][$skill_id]['name']."</a></td>\n
187
187
                                                                                                        <td>".$data['skill'][$skill_id]['description']."</td>\n
188
188
                                                                                                        <td><a href=\"".$GLOBALS['basemodule_url']."/wanted/skill/".$skill_slug."/".$values['skill_experience']."\" title=\"".$data['skill'][$skill_id]['name']." - ".$exp."\">".$exp."</a></td>\n</tr>\n";
189
189
        }
223
223
 
224
224
</div>
225
225
<!-- Wanted ends here -->
226