Showing posts with label drupal. Show all posts
Showing posts with label drupal. Show all posts

Wednesday, January 20, 2010

Drupal 7.0 Alpha 1 released

Drupal 7.0 Alpha 1 released

This alpha includes a tremendous number of new features and new under-the-hood improvements for both users and developers. Lets explore!

Monday, October 12, 2009

Want to Add fields to terms ?

Are you looking for a way to add fields to terms like fields to content types via CCK Fields ?
Then here is the suitable module for you: Term Fields

Using this module you can add - single/multi row textbox, numeric, date, select box types of fields to the terms of a vocabulary.

Friday, October 9, 2009

FIX - Deprecated: Function ereg() is deprecated

Deprecated: Function ereg() is deprecated in drupal-6.14\includes\file.inc on line 902

FIX:
Find the below line:
elseif ($depth >= $min_depth && ereg($mask, $file)) {


Update it to:
elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {