Improved the default description to guide the administrator.

dev
Loic d'Anterroches 2009-01-20 17:39:53 +01:00
parent 28432296bf
commit 388a98defd
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class IDF_Form_Admin_ProjectCreate extends Pluf_Form
$project->name = $this->cleaned_data['name']; $project->name = $this->cleaned_data['name'];
$project->shortname = $this->cleaned_data['shortname']; $project->shortname = $this->cleaned_data['shortname'];
$project->private = $this->cleaned_data['private_project']; $project->private = $this->cleaned_data['private_project'];
$project->description = __('Write your project description here.'); $project->description = __('Click on the Administer tab to set the description of your project.');
$project->create(); $project->create();
$conf = new IDF_Conf(); $conf = new IDF_Conf();
$conf->setProject($project); $conf->setProject($project);