See the Mailing lists or Drupal Issue queue. There are also various working groups on groups.drupal.org

Profile.module patch

I needed the ability to create node references in user profiles so I coded the functionality into the module. I'd like to submit this feature to the community but I am not sure how. I made a patch file but the module is core so there is no maintainer or module page. Anyone know who I should contact or where I can post my patch file?

Thanks!

How to put 2 sets of radio buttons in a row

Would like to know how to put 2 sets of radio buttons in a row
For eg

Title1 Title2
Radio1 Radio2 Radio1 Radio2

Dynamic Links/Menus

I am creating my first website using drupal and am really impresses by its power still some questions remain:-

my site doesn't send any email

my drupal site is 5.2 it was phpbb forum, i made a migration it's done perfectly, after that new users start to registered in my site and it was ok, fter they become close to 1200 users the registration email stop, none of any user can get any email, also the link for forgotten email the same thing....
my site show a message WE SEND A NEW PASSWORD TO YOUR EMAIL...put nothing there
so where is the problem

Searching accentuated arabic text problem

Hi all,
The search module works fine as long as the searched text (Arabic) isn't accentuated. Once the searched sentence has any word that is accentuated, the search yields no results. A google search still can find those words with no problem.

I installed the "accents" module but has no results still.

example:

good :
هذه جملة
bad:

هَذِه جُملَةٌ

I hope someone has some answer/ solution for this problem.

Many thanks

Teaser end string

Hi all,

please forgive me if this is the wrong place where to post this...
I had the following problem: I wanted to end the teaser of a node with a string, because looking at the front page of my site it was not clear if the content of the articles was truncated or simply short. Afer poking around with Drupal code I found the solution posted here: I do not know if this is the correct or the better solution, give me some feedback. The only drawback is that it is a modification of the node module, that is fundamental for Drupal.

node.module

148,149d147
<   $endstring = variable_get('teaser_endstring', '');
<
160c158
<     return substr($body, 0, $delimiter) . "\n" . "$endstring";
---
>     return substr($body, 0, $delimiter);
192c190
<       return ($position == 0) ? $teaser : substr($teaser, 0, $position) . "\n" . "$endstring";
---
>       return ($position == 0) ? $teaser : substr($teaser, 0, $position);
207c205
<   return ($position == 0) ? $teaser : substr($teaser, 0, $position) . "\n" . "$endstring";
---
>   return ($position == 0) ? $teaser : substr($teaser, 0, $position);
1012,1015d1009
<   $form['teaser_endstring'] = array(
<      '#type' => 'textfield', '#title' => t('Teaser end string'), '#default_value' => '', '#description' => t('This string will be appended at the end of the teaser')
<   );

Feedbacks are welcome!

Leo

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Drupal core