Complex expressions

Here is the list of the most complex expressions used in the code. A complex expression is an expression that requires more than 20 tokens to be build.

Literal arrays are omitted.

File Count Expression
/core/bug_api.php:5801db_query($t_query, array($this->project_id$this->reporter_id$this->handler_id$this->duplicate_id$this->priority$this->severity$this->reproducibility$t_status$this->resolution$this->projection$this->category_id$this->date_submitted$this->last_updated$this->eta$t_text_id$this->os$this->os_build$this->platform$this->version$this->build$this->profile_id$this->summary$this->view_state$this->sponsorship_total$this->sticky$this->fixed_in_version$this->target_version$this->due_date))
/core/commands/IssueNoteAddCommand.php:2651if(config_get('reassign_on_feedback') && $this->issue->status === config_get('bug_feedback_status') && $this->issue->handler_id !== $this->reporterId && $this->issue->reporter_id === $this->reporterId) { /**/ }
/core/bug_group_action_api.php:2401if(!isset($t_commands['CLOSE']) && $t_update_bug_status_allowed && (access_has_project_level(access_get_status_threshold(config_get('bug_closed_status_threshold'null$t_user_id$t_project_id), $t_project_id), $t_project_id) || access_has_project_level(config_get('allow_reporter_close'null$t_user_id$t_project_id), $t_project_id))) { /**/ }
/core/classes/BugFilterQuery.class.php:7491if((gpc_string_to_bool($this->filter[FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE])) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_START_MONTH]) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_START_DAY]) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_START_YEAR]) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_END_MONTH]) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_END_DAY]) && is_numeric($this->filter[FILTER_PROPERTY_LAST_UPDATED_END_YEAR])) { /**/ }
/core/classes/BugFilterQuery.class.php:7201if((gpc_string_to_bool($this->filter[FILTER_PROPERTY_FILTER_BY_DATE_SUBMITTED])) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_START_MONTH]) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_START_DAY]) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_START_YEAR]) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_END_MONTH]) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_END_DAY]) && is_numeric($this->filter[FILTER_PROPERTY_DATE_SUBMITTED_END_YEAR])) { /**/ }
/bug_view_inc.php:4241if(($t_flags['profiles_platform_show'] && isset($t_issue['platform']) && !is_blank($t_issue['platform'])) || ($t_flags['profiles_os_show'] && isset($t_issue['os']) && !is_blank($t_issue['os'])) || ($t_flags['profiles_os_build_show'] && isset($t_issue['os_build']) && !is_blank($t_issue['os_build']))) { /**/ }
/my_view_page.php:1081if(($t_box_title == 'assigned' && ($t_anonymous_user || !access_has_any_project_level('handle_bug_threshold'$t_project_ids_to_check$t_current_user_id))) || ($t_box_title == 'monitored' && ($t_anonymous_user || !access_has_any_project_level('monitor_bug_threshold'$t_project_ids_to_check$t_current_user_id))) || (in_array($t_box_title, array('reported''feedback''verify')) && ($t_anonymous_user || !access_has_any_project_level('report_bug_threshold'$t_project_ids_to_check$t_current_user_id)))) { /**/ }
/core/access_api.php:7181if(ON == config_get('allow_reporter_reopen'nullnull$p_bug->project_id) && bug_is_user_reporter($p_bug->id$p_user_id) && access_has_project_level(config_get('report_bug_threshold'null$p_user_id$p_bug->project_id), $p_bug->project_id$p_user_id)) { /**/ }
/core/columns_api.php:10821if(COLUMNS_TARGET_PRINT_PAGE == $p_columns_target || access_has_any_project_level('report_bug_threshold') || access_has_project_level(config_get('move_bug_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('update_bug_assign_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('update_bug_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('delete_bug_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('update_bug_status_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('set_bug_sticky_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('change_view_status_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('add_bugnote_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('tag_attach_threshold'nullnull$p_bug->project_id), $p_bug->project_id) || access_has_project_level(config_get('roadmap_update_threshold'nullnull$p_bug->project_id), $p_bug->project_id)) { /**/ } else { /**/ }
/bug_update.php:2611if($t_existing_bug->resolution != $t_updated_bug->resolution && (($t_updated_bug->resolution >= $t_resolution_fixed_threshold && $t_updated_bug->resolution != $t_reopen_resolution && $t_updated_bug->status $t_resolved_status) || ($t_updated_bug->resolution == $t_reopen_resolution && ($t_existing_bug->status $t_resolved_status || $t_updated_bug->status >= $t_resolved_status)) || ($t_updated_bug->resolution $t_resolution_fixed_threshold && $t_updated_bug->status >= $t_resolved_status))) { /**/ }
/bug_update.php:3801if($t_bug_note->note && config_get('reassign_on_feedback') && $t_existing_bug->status == config_get('bug_feedback_status') && $t_updated_bug->status == $t_existing_bug->status && $t_updated_bug->handler_id != $t_current_user_id && $t_updated_bug->reporter_id == $t_current_user_id) { /**/ }
/admin/install.php:12651if(($f_hostname != config_get_global('hostname''')) || ($f_db_type != config_get_global('db_type''')) || ($f_database_name != config_get_global('database_name''')) || ($f_db_username != config_get_global('db_username''')) || ($f_db_password != config_get_global('db_password'''))) { /**/ } else { /**/ }
/api/soap/mc_project_api.php:4601$t_data = array('query' => array('project_id' => $t_project_id,  ), 'payload' => array('name' => $p_version['name'], 'description' => $p_version['description'], 'released' => $p_version['released'], 'obsolete' => isset($p_version['obsolete']) ? $p_version['obsolete'] : false'timestamp' => $p_version['date_order'],  ))
/api/soap/mc_issue_api.php:7841$t_filter = array('category_id' => array('0' => $t_any,  ), 'severity' => array('0' => $t_any,  ), 'status' => array('0' => $t_any,  ), 'highlight_changed' => 0'reporter_id' => array('0' => $t_any,  ), 'handler_id' => array('0' => $t_any,  ), 'resolution' => array('0' => $t_any,  ), 'build' => array('0' => $t_any,  ), 'version' => array('0' => $t_any,  ), 'hide_status' => array('0' => $t_none,  ), 'monitor_user_id' => array('0' => $t_any,  ), 'dir' => 'DESC''sort' => 'id',  )
/api/soap/mc_api.php:12212$t_trace .= (isset($t_frame['file']) ? basename($t_frame['file']) : 'UnknownFile') . ' L' . (isset($t_frame['line']) ? $t_frame['line'] : '?') . ' ' . (isset($t_frame['function']) ? $t_frame['function'] : 'UnknownFunction')
/api/soap/mc_api.php:11962$t_trace .= (isset($t_frame['file']) ? basename($t_frame['file']) : 'UnknownFile') . ' L' . (isset($t_frame['line']) ? $t_frame['line'] : '?') . ' ' . (isset($t_frame['function']) ? $t_frame['function'] : 'UnknownFunction')
/core/classes/BugFilterQuery.class.php:15571$t_textsearch_where_clause .= '( ' $this->sql_like('{bug}.summary'$c_search) . ' OR ' $this->sql_like('{bug_text}.description'$c_search) . ' OR ' $this->sql_like('{bug_text}.steps_to_reproduce'$c_search) . ' OR ' $this->sql_like('{bug_text}.additional_information'$c_search) . ' OR ' $this->sql_like('{bugnote_text}.note'$c_search)
/core/classes/BugFilterQuery.class.php:12341$t_where '(' $t_table_dst '.relationship_type=' $this->param($t_comp_type) . ' AND ' $t_table_dst '.source_bug_id=' $this->param($c_rel_bug) . ' OR ' $t_table_src '.relationship_type=' $this->param($c_rel_type) . ' AND ' $t_table_src '.destination_bug_id=' $this->param($c_rel_bug) . ')'
/core/classes/BugFilterQuery.class.php:6581$t_query_projects_or[] = $this->sql_in('{bug}.project_id'$t_limited_public_only_project_ids) . ' AND {bug}.view_state = ' $this->param(VS_PUBLIC) . ' AND (' ' {bug}.reporter_id = ' $this->param($t_user_id) . ' OR {bug}.handler_id = ' $this->param($t_user_id) . ' OR EXISTS ( SELECT 1 FROM {bug_monitor} bm' ' WHERE bm.user_id = ' $this->param($t_user_id) . ' AND bm.bug_id = {bug}.id )' ' )'
/core/file_api.php:13581$t_query 'INSERT INTO {bug_file} (
                bug_id, title, description, diskfile, filename, folder,
                filesize, file_type, date_added, user_id, content
            )
            VALUES ( ' 
db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ')'
/admin/install.php:12221$t_config '<?php' PHP_EOL '$g_hostname               = \'' addslashes($f_hostname) . '\';' PHP_EOL '$g_db_type                = \'' addslashes($f_db_type) . '\';' PHP_EOL '$g_database_name          = \'' addslashes($f_database_name) . '\';' PHP_EOL '$g_db_username            = \'' addslashes($f_db_username) . '\';' PHP_EOL '$g_db_password            = \'' addslashes($f_db_password) . '\';' PHP_EOL
/admin/schema.php:4191$g_upgrade[51] = array('InsertData', array(db_get_table('user'), "(
        username, realname, email, password,
        date_created, last_visit, enabled, protected, access_level,
        login_count, lost_password_request_count, failed_login_count,
        cookie_string
    )
    VALUES (
        'administrator', '', 'root@localhost', '63a9f0ea7bb98050796b649e85481845',
        
$t_timestamp$t_timestamp, '1', '0', 90,
        3, 0, 0, '" 
md5(mt_rand(0mt_getrandmax( )) + mt_rand(0mt_getrandmax( ))) . md5(time( )) . "'
    )"
))
/plugins/MantisGraph/core/Period.php:2761$t_periods = array(=> plugin_lang_get('period_none'), => plugin_lang_get('period_this_week'), => plugin_lang_get('period_last_week'), => plugin_lang_get('period_two_weeks'), => plugin_lang_get('period_this_month'), => plugin_lang_get('period_last_month'), => plugin_lang_get('period_this_quarter'), => plugin_lang_get('period_last_quarter'), => plugin_lang_get('period_year_to_date'), => plugin_lang_get('period_last_year'), 10 => plugin_lang_get('period_select'),  )
/plugins/MantisGraph/MantisGraph.php:2411$t_menu_items = array('developer_graph.php' => array('icon' => 'fa-bar-chart''label' => lang_get('by_developer'), 'url' => $this->get_url_with_filter('developer_graph.php'),  ), 'reporter_graph.php' => array('icon' => 'fa-bar-chart''label' => lang_get('by_reporter'), 'url' => $this->get_url_with_filter('reporter_graph.php'),  ), 'status_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('status_link'), 'url' => $this->get_url_with_filter('status_graph.php'),  ), 'resolution_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('resolution_link'), 'url' => $this->get_url_with_filter('resolution_graph.php'),  ), 'priority_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('priority_link'), 'url' => $this->get_url_with_filter('priority_graph.php'),  ), 'severity_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('severity_link'), 'url' => $this->get_url_with_filter('severity_graph.php'),  ), 'category_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('category_link'), 'url' => $this->get_url_with_filter('category_graph.php'),  ), 'issues_trend_graph.php' => array('icon' => 'fa-bar-chart''label' => plugin_lang_get('issue_trends_link'), 'url' => $this->get_url_with_filter('issues_trend_graph.php'),  ),  )
/api/rest/restcore/issues_rest.php:4831$t_file = array('id' => (int) $t_internal_file['id'], 'reporter' => mci_account_get_array_by_id($t_internal_file['user_id']), 'created_at' => ApiObjectFactory::datetimeString($t_internal_file['date_added']), 'filename' => $t_internal_file['display_name'], 'size' => (int) $t_internal_file['size'],  )
/api/soap/mc_file_api.php:1441$t_param = array($t_id_col => $t_id'title' => $p_title'description' => $p_desc'diskfile' => $t_unique_name'filename' => $p_name'folder' => $t_file_path'filesize' => $t_file_size'file_type' => $p_file_type'date_added' => db_now( ), 'user_id' => (int) $p_user_id,  )
/api/soap/mc_project_api.php:9491$t_query 'SELECT pft.id, pft.project_id, pft.filename, pft.file_type, pft.filesize, pft.title, pft.description, pft.date_added, pft.user_id
        FROM {project_file} pft
        LEFT JOIN {project} pt ON pft.project_id = pt.id
        LEFT JOIN {project_user_list} pult
        ON pft.project_id = pult.project_id AND pult.user_id = ' 
db_param( ) . '
        LEFT JOIN {user} ut ON ut.id = ' 
db_param( ) . '
        WHERE pft.project_id in (' 
implode(','$t_projects) . ') AND
        ( ( ( pt.view_state = ' 
db_param( ) . ' OR pt.view_state is null ) AND pult.user_id is null AND ut.access_level ' $t_access_clause ' ) OR
        ( ( pult.user_id = ' 
db_param( ) . ' ) AND ( pult.access_level ' $t_access_clause ' ) ) OR
        ( ut.access_level = ' 
db_param( ) . ' ) )
        ORDER BY pt.name ASC, pft.title ASC'
/api/soap/mc_project_api.php:8431$t_result = array('id' => (int) $t_version['id'], 'name' => $t_version['version'], 'description' => $t_version['description'], 'released' => (bool) $t_version['released'], 'obsolete' => (bool) $t_version['obsolete'], 'timestamp' => ApiObjectFactory::datetime($t_version['date_order']),  )
/core/filter_api.php:8601$t_filter = array('_version' => FILTER_VERSION'_view_type' => $t_view_typeFILTER_PROPERTY_CATEGORY_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_SEVERITY => $t_meta_filter_any_arrayFILTER_PROPERTY_STATUS => $t_meta_filter_any_arrayFILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changedFILTER_PROPERTY_REPORTER_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_HANDLER_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_PROJECT_ID => array(META_FILTER_CURRENT), FILTER_PROPERTY_RESOLUTION => $t_meta_filter_any_arrayFILTER_PROPERTY_BUILD => $t_meta_filter_any_arrayFILTER_PROPERTY_VERSION => $t_meta_filter_any_arrayFILTER_PROPERTY_HIDE_STATUS => array($t_hide_status_default), FILTER_PROPERTY_MONITOR_USER_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_SORT_FIELD_NAME => 'last_updated'FILTER_PROPERTY_SORT_DIRECTION => 'DESC'FILTER_PROPERTY_ISSUES_PER_PAGE => config_get('default_limit_view'), FILTER_PROPERTY_MATCH_TYPE => FILTER_MATCH_ALLFILTER_PROPERTY_PLATFORM => $t_meta_filter_any_arrayFILTER_PROPERTY_OS => $t_meta_filter_any_arrayFILTER_PROPERTY_OS_BUILD => $t_meta_filter_any_arrayFILTER_PROPERTY_FIXED_IN_VERSION => $t_meta_filter_any_arrayFILTER_PROPERTY_TARGET_VERSION => $t_meta_filter_any_arrayFILTER_PROPERTY_PROFILE_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_PRIORITY => $t_meta_filter_any_arrayFILTER_PROPERTY_NOTE_USER_ID => $t_meta_filter_any_arrayFILTER_PROPERTY_STICKY => gpc_string_to_bool(config_get('show_sticky_issues')), FILTER_PROPERTY_FILTER_BY_DATE_SUBMITTED => falseFILTER_PROPERTY_DATE_SUBMITTED_START_MONTH => date('m'), FILTER_PROPERTY_DATE_SUBMITTED_END_MONTH => date('m'), FILTER_PROPERTY_DATE_SUBMITTED_START_DAY => 1FILTER_PROPERTY_DATE_SUBMITTED_END_DAY => date('d'), FILTER_PROPERTY_DATE_SUBMITTED_START_YEAR => date('Y'), FILTER_PROPERTY_DATE_SUBMITTED_END_YEAR => date('Y'), FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE => falseFILTER_PROPERTY_LAST_UPDATED_START_MONTH => date('m'), FILTER_PROPERTY_LAST_UPDATED_END_MONTH => date('m'), FILTER_PROPERTY_LAST_UPDATED_START_DAY => 1FILTER_PROPERTY_LAST_UPDATED_END_DAY => date('d'), FILTER_PROPERTY_LAST_UPDATED_START_YEAR => date('Y'), FILTER_PROPERTY_LAST_UPDATED_END_YEAR => date('Y'), FILTER_PROPERTY_SEARCH => ''FILTER_PROPERTY_VIEW_STATE => META_FILTER_ANYFILTER_PROPERTY_TAG_STRING => ''FILTER_PROPERTY_TAG_SELECT => 0FILTER_PROPERTY_RELATIONSHIP_TYPE => BUG_REL_ANYFILTER_PROPERTY_RELATIONSHIP_BUG => META_FILTER_ANY,  )
/core/bug_api.php:5631$t_query 'INSERT INTO {bug}
                        ( project_id,reporter_id, handler_id,duplicate_id,
                          priority,severity, reproducibility,status,
                          resolution,projection, category_id,date_submitted,
                          last_updated,eta, bug_text_id,
                          os, os_build,platform, version,build,
                          profile_id, summary, view_state, sponsorship_total, sticky, fixed_in_version,
                          target_version, due_date
                        )
                      VALUES
                        ( ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ',
                          ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ')'
/core/news_api.php:711$t_query 'INSERT INTO {news}
                  ( project_id, poster_id, date_posted, last_modified,
                    view_state, announcement, headline, body )
                VALUES
                    ( ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . ',
                      ' 
db_param( ) . '
                    )'
/core/user_api.php:5451$t_query 'INSERT INTO {user}
                    ( username, email, password, date_created, last_visit,
                     enabled, access_level, login_count, cookie_string, realname )
                  VALUES
                    ( ' 
db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ',
                     ' 
db_param( ) . ',' db_param( ) . ',' db_param( ) . ',' db_param( ) . ', ' db_param( ) . ')'
/core/error_api.php:5091$t_output .= (isset($t_frame['file']) ? $t_frame['file'] : '-') . ': ' . (isset($t_frame['line']) ? $t_frame['line'] : '-') . ': ' . (isset($t_frame['class']) ? $t_frame['class'] : '-') . ' - ' . (isset($t_frame['type']) ? $t_frame['type'] : '-') . ' - ' . (isset($t_frame['function']) ? $t_frame['function'] : '-')
/core/bugnote_api.php:2881$t_query 'INSERT INTO {bugnote}
            (bug_id, reporter_id, bugnote_text_id, view_state, date_submitted, last_modified, note_type, note_attr, time_tracking)
        VALUES (' 
db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ', ' db_param( ) . ' )'
/my_view_inc.php:1701$c_filter['verify'] = array(FILTER_PROPERTY_CATEGORY_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_SEVERITY => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_STATUS => array('0' => $t_bug_resolved_status_threshold,  ), FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changedFILTER_PROPERTY_REPORTER_ID => array('0' => $t_current_user_id,  ), FILTER_PROPERTY_HANDLER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_RESOLUTION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_BUILD => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_VERSION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HIDE_STATUS => array('0' => $t_hide_status_default,  ), FILTER_PROPERTY_MONITOR_USER_ID => array('0' => META_FILTER_ANY,  ),  )
/my_view_inc.php:2051$c_filter['my_comments'] = array(FILTER_PROPERTY_CATEGORY_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_SEVERITY => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_STATUS => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changedFILTER_PROPERTY_REPORTER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HANDLER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_RESOLUTION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_BUILD => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_VERSION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HIDE_STATUS => array('0' => $t_hide_status_default,  ), FILTER_PROPERTY_MONITOR_USER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_NOTE_USER_ID => array('0' => META_FILTER_MYSELF,  ),  )
/core/email_api.php:6181$t_message lang_get('new_account_signup_msg') . "\n\n" lang_get('new_account_username') . ' ' $p_username "\n" lang_get('new_account_email') . ' ' $p_email "\n" lang_get('new_account_IP') . ' ' $_SERVER['REMOTE_ADDR'] . "\n" config_get_global('path') . "\n\n" lang_get('new_account_do_not_reply')
/core/file_api.php:9691$t_param = array($t_id_col => $t_id'title' => $p_title'description' => $p_desc'diskfile' => $t_unique_name'filename' => $t_file_name'folder' => $t_file_path'filesize' => $t_file_size'file_type' => $p_file['type'], 'date_added' => $p_date_added'user_id' => (int) $p_user_id)
/core/summary_api.php:11981$t_stats = array('bug_id' => $t_row['id'], 'largest_diff' => number_format((int) $t_row['diff'] / SECONDS_PER_DAY2), 'total_time' => number_format((int) $t_row['total_time'] / SECONDS_PER_DAY2), 'average_time' => number_format((int) $t_row['avg_time'] / SECONDS_PER_DAY2),  )
/core/summary_api.php:14411$t_new_bugs_link $t_link_prefix '&amp;' FILTER_PROPERTY_FILTER_BY_DATE_SUBMITTED '=' ON '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_START_YEAR '=' date('Y'$t_start_date) . '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_START_MONTH '=' date('m'$t_start_date) . '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_START_DAY '=' date('d'$t_start_date) . '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_END_YEAR '=' date('Y'$t_end_date) . '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_END_MONTH '=' date('m'$t_end_date) . '&amp;' FILTER_PROPERTY_DATE_SUBMITTED_END_DAY '=' date('d'$t_end_date) . $t_status_prop '">'
/core/bug_activity_api.php:891$t_activity = array('type' => ENTRY_TYPE_ATTACHMENT'timestamp' => $t_attachment['date_added'], 'modified' => false'last_modified' => $t_attachment['date_added'], 'id' => $t_attachment['id'], 'id_formatted' => $t_attachment['id'], 'user_id' => $t_attachment['user_id'], 'private' => false'style' => 'bugnote-note''attachment' => $t_attachment)
/core/bug_activity_api.php:1171$t_activity = array('type' => ENTRY_TYPE_NOTE'timestamp' => $t_bugnote->date_submitted'last_modified' => $t_bugnote->last_modified'modified' => $t_bugnote->date_submitted != $t_bugnote->last_modified'id' => $t_bugnote_id'id_formatted' => bugnote_format_id($t_bugnote_id), 'user_id' => $t_bugnote->reporter_id'private' => $t_bugnote->view_state != VS_PUBLIC'style' => 'bugnote-note''attachments' => array( ), 'note' => $t_bugnote)
/core/bug_api.php:6731$t_query 'UPDATE {bug}
                    SET project_id=' 
db_param( ) . ', reporter_id=' db_param( ) . ',
                        handler_id=' 
db_param( ) . ', duplicate_id=' db_param( ) . ',
                        priority=' 
db_param( ) . ', severity=' db_param( ) . ',
                        reproducibility=' 
db_param( ) . ', status=' db_param( ) . ',
                        resolution=' 
db_param( ) . ', projection=' db_param( ) . ',
                        category_id=' 
db_param( ) . ', eta=' db_param( ) . ',
                        os=' 
db_param( ) . ', os_build=' db_param( ) . ',
                        platform=' 
db_param( ) . ', version=' db_param( ) . ',
                        build=' 
db_param( ) . ', fixed_in_version=' db_param( ) . ','
/core/bug_api.php:6841$t_fields = array($this->project_id$this->reporter_id$this->handler_id$this->duplicate_id$this->priority$this->severity$this->reproducibility$this->status$this->resolution$this->projection$this->category_id$this->eta$this->os$this->os_build$this->platform$this->version$this->build$this->fixed_in_version,  )
/my_view_inc.php:791$t_url_link_parameters['recent_mod'] = FILTER_PROPERTY_HIDE_STATUS '=none' '&' FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE '=' $c_filter['recent_mod'][FILTER_PROPERTY_FILTER_BY_LAST_UPDATED_DATE] . '&' FILTER_PROPERTY_LAST_UPDATED_END_DAY '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_DAY] . '&' FILTER_PROPERTY_LAST_UPDATED_END_MONTH '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_MONTH] . '&' FILTER_PROPERTY_LAST_UPDATED_END_YEAR '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_END_YEAR] . '&' FILTER_PROPERTY_LAST_UPDATED_START_DAY '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_DAY] . '&' FILTER_PROPERTY_LAST_UPDATED_START_MONTH '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_MONTH] . '&' FILTER_PROPERTY_LAST_UPDATED_START_YEAR '=' $c_filter['recent_mod'][FILTER_PROPERTY_LAST_UPDATED_START_YEAR]
/manage_user_create.php:801$t_data = array('query' => array( ), 'payload' => array('username' => $f_username'email' => $f_email'access_level' => array('id' => $f_access_level), 'real_name' => $f_realname'password' => $f_password'protected' => $f_protected'enabled' => $f_enabled))
/my_view_inc.php:1351$c_filter['feedback'] = array(FILTER_PROPERTY_CATEGORY_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_SEVERITY => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_STATUS => array('0' => config_get('bug_feedback_status'),  ), FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changedFILTER_PROPERTY_REPORTER_ID => array('0' => $t_current_user_id,  ), FILTER_PROPERTY_HANDLER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_RESOLUTION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_BUILD => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_VERSION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HIDE_STATUS => array('0' => $t_hide_status_default,  ), FILTER_PROPERTY_MONITOR_USER_ID => array('0' => META_FILTER_ANY,  ),  )
/my_view_inc.php:911$c_filter['resolved'] = array(FILTER_PROPERTY_CATEGORY_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_SEVERITY => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_STATUS => array('0' => $t_bug_resolved_status_threshold,  ), FILTER_PROPERTY_HIGHLIGHT_CHANGED => $t_default_show_changedFILTER_PROPERTY_REPORTER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HANDLER_ID => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_RESOLUTION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_BUILD => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_VERSION => array('0' => META_FILTER_ANY,  ), FILTER_PROPERTY_HIDE_STATUS => array('0' => $t_hide_status_default,  ), FILTER_PROPERTY_MONITOR_USER_ID => array('0' => META_FILTER_ANY,  ),  )
/bug_view_inc.php:10391$t_enum_list get_status_option_list($t_current_access$p_bug->statusfalse, (bug_is_user_reporter($p_bug->idauth_get_current_user_id( )) && access_has_bug_level(config_get('report_bug_threshold'), $p_bug->id) && ON == config_get('allow_reporter_close')), $p_bug->project_id)
/proj_doc_update.php:1171$t_query 'UPDATE {project_file}
        SET title=' 
db_param( ) . ', description=' db_param( ) . ', date_added=' db_param( ) . ',
            filename=' 
db_param( ) . ', filesize=' db_param( ) . ', file_type=' db_param( ) . ', content=' db_param( ) . '
            WHERE id=' 
db_param( )
/proj_doc_page.php:941$t_query 'SELECT pft.id, pft.project_id, pft.filename, pft.filesize, pft.title, pft.description, pft.date_added
            FROM {project_file} pft
                LEFT JOIN {project} pt ON pft.project_id = pt.id
                LEFT JOIN {project_user_list} pult
                    ON pft.project_id = pult.project_id AND pult.user_id = ' 
db_param( ) . '
                LEFT JOIN {user} ut ON ut.id = ' 
db_param( ) . '
            WHERE pft.project_id in (' 
implode(','$t_projects) . ') AND
                ( ( ( pt.view_state = ' 
db_param( ) . ' OR pt.view_state is null ) AND pult.user_id is null AND ut.access_level ' $t_access_clause ' ) OR
                    ( ( pult.user_id = ' 
db_param( ) . ' ) AND ( pult.access_level ' $t_access_clause ' ) ) OR
                    ( ut.access_level >= ' 
db_param( ) . ' ) )
            ORDER BY pt.name ASC, pft.title ASC'