From f383662c43f01474ca112ef2f6890778f062dc6e Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Tue, 26 May 2009 14:04:29 -0400 Subject: [PATCH] improved wording of messages --- tasks.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks.php b/tasks.php index 7116567..19010f8 100644 --- a/tasks.php +++ b/tasks.php @@ -427,13 +427,13 @@ function tasks_edit_main() { } else { # better be "request_price" if(description_has_fixmes($description)) { $state = TASK_NEEDS_CLARIFICATION; - message('The description is not ready to be priced yet because it still contains at least one "FIXME".'); + message("Error: Not requesting price. To get this task priced, you'll need to edit the description so it no longer contains \"FIXME\"."); } else { $state = TASK_NEEDS_QUOTE; } } - if(!logged_in_as_contractor() || $edit_id || $_REQUEST['client_id']) { # if you change this change the one above + if(!logged_in_as_contractor() || $edit_id || $_REQUEST['client_id']) { if($edit_id) { $tables = 'title,url,description,state'; $values = array($title, $url, $description, $state); @@ -447,7 +447,7 @@ function tasks_edit_main() { array_push($values, new_lowest_priority($client_id)); } db_update('tasks', $tables, $values, 'where id=%i', $edit_id); - message('Task updated.'); + message('Changes saved.'); } else { # new task $paid = 0; -- 1.7.10.4