~sense/ubuntu-wanted/drupal6-migration

« back to all changes in this revision

Viewing changes to module/wanted/themes/wanted/tasklist/default_item.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:
133
133
 
134
134
<?php
135
135
if($part_data['description'] != null)
136
 
        echo str_replace("\n", "<br />", limit_number_of_lines(force_text_wrap(linkify_URLS(strip_tags_and_evil_attributes($part_data['description'], "<a>"))), 30, $GLOBALS['basemodule_url'] . "/" . $pathname . "/" . $part_data['id']));
 
136
        echo str_replace("\n", "<br />", limitText(force_text_wrap(linkify_URLS(strip_tags_and_evil_attributes($part_data['description'], "<a>"))), 30, $GLOBALS['basemodule_url'] . "/" . $pathname . "/" . $part_data['id']));
137
137
else
138
138
        echo "[No description]";
139
139
?>