From 58363e7a9a87bd1162dd65e9103b0a87d50b2ba6 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 12 Dec 2008 12:15:58 -0500 Subject: [PATCH] tasks at exactly the Tiny Job Agreement level are auto-approved --- tasks.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tasks.php b/tasks.php index 8995d80..f47e240 100644 --- a/tasks.php +++ b/tasks.php @@ -31,15 +31,11 @@ function description_has_fixmes($description) { return (strpos($description, 'FIXME') !== false); } -# replace every character in $str with " " -function to_nbsp($matches) { - return str_repeat(' ', strlen($matches[0]) * 2); -} - # encode as html, make it display newlines and leading spaces function enc_htmlbrtab($str) { $str = enc_htmlbr($str); - $str = preg_replace_callback("|^ *|m", to_nbsp, $str); + $space_to_nbsp = create_function('$matches', 'return str_repeat(\' \', strlen($matches[0]) * 2);'); + $str = preg_replace_callback("|^ *|m", $space_to_nbsp, $str); return $str; } @@ -274,7 +270,7 @@ function tasks_edit_main() { $state = TASK_BUG; } elseif(isset($_REQUEST['save_price']) && logged_in_as_contractor()) { $tiny_agreement = db_get_value('people', 'tiny_agreement', 'where id=%i', $client_id); - if($price < $tiny_agreement) { + if($price <= $tiny_agreement) { $state = TASK_QUEUED; } else { $state = TASK_NEEDS_GO_AHEAD; -- 1.7.10.4