From 1fa516814a0fae550700a7843ef2b99f6390aa99 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Wed, 20 Jan 2016 16:46:52 +0100 Subject: [PATCH 01/11] Implementation of the email-alert on requirement state change. --- gui/templates/mainPageLeft.tpl | 6 +- .../notificationAssignmentConfig.tpl | 53 +++++ .../notificationAssignmentCreate.tpl | 47 ++++ lib/cfields/cfieldsEdit.php | 3 + lib/functions/object.class.php | 1 + lib/functions/requirement_mgr.class.php | 221 +++++++++++++++++- lib/general/mainPage.php | 2 +- .../notificationAssignmentConfig.php | 76 ++++++ .../notificationAssignmentCreate.php | 63 +++++ lib/requirements/reqEdit.php | 91 +++++++- locale/de_DE/strings.txt | 11 +- locale/en_GB/strings.txt | 14 +- 12 files changed, 575 insertions(+), 13 deletions(-) create mode 100644 gui/templates/notificationAssignmentConfig.tpl create mode 100644 gui/templates/notificationAssignmentCreate.tpl create mode 100644 lib/notificationassignments/notificationAssignmentConfig.php create mode 100644 lib/notificationassignments/notificationAssignmentCreate.php diff --git a/gui/templates/mainPageLeft.tpl b/gui/templates/mainPageLeft.tpl index 5e77e40c9e..def27d2744 100644 --- a/gui/templates/mainPageLeft.tpl +++ b/gui/templates/mainPageLeft.tpl @@ -9,7 +9,7 @@ {lang_get var='labels' s='title_product_mgmt,href_tproject_management,href_admin_modules, href_assign_user_roles,href_cfields_management,system_config, href_cfields_tproject_assign,href_keywords_manage, - title_user_mgmt,href_user_management, + title_user_mgmt,href_user_management,href_process_step_role_assignment, href_roles_management,title_requirements, href_req_spec,href_req_assign,link_report_test_cases_created_per_user, title_test_spec,href_edit_tc,href_browse_tc,href_search_tc, @@ -168,6 +168,10 @@
{if $gui->grants.cfield_management == "yes"} {$labels.href_cfields_management} +
+ {/if} + {if $gui->userRole eq "admin"} + {$labels.href_process_step_role_assignment}
{/if} diff --git a/gui/templates/notificationAssignmentConfig.tpl b/gui/templates/notificationAssignmentConfig.tpl new file mode 100644 index 0000000000..2b6f601f44 --- /dev/null +++ b/gui/templates/notificationAssignmentConfig.tpl @@ -0,0 +1,53 @@ +{lang_get var='labels' + s='test_project_names,assign_button_label,assign_table_header_fieldvals,assign_table_header_users,assign_btn_change,assign_btn_delete'} + + + + + + {include file="inc_head.tpl" openHead="yes" jsValidate="yes" editorType=$gui->editorType} +
+
+ + + + +
+
+ {if isset($gui->assignments)} +
+ {foreach key=fieldName item=fieldVal from=$gui->assignments} +
+
+

{$fieldName}

+ + + {for $i=0 to sizeof($fieldVal["field_value"])} + + + + + {/for} + + + + +
+
+ {/foreach} +
+ {/if} + + \ No newline at end of file diff --git a/gui/templates/notificationAssignmentCreate.tpl b/gui/templates/notificationAssignmentCreate.tpl new file mode 100644 index 0000000000..d30d5f31c4 --- /dev/null +++ b/gui/templates/notificationAssignmentCreate.tpl @@ -0,0 +1,47 @@ +{lang_get var='labels' + s='assign_table_header_fieldvals,assign_table_header_users,btn_cancel,btn_ok'} + + + + + + + +
+
+ + + + {foreach key=fieldValNr item=fieldVal from=$gui->fieldVals} + + + + + {/foreach} + + + +
+
+ + \ No newline at end of file diff --git a/lib/cfields/cfieldsEdit.php b/lib/cfields/cfieldsEdit.php index b48e50d16b..bb63622724 100644 --- a/lib/cfields/cfieldsEdit.php +++ b/lib/cfields/cfieldsEdit.php @@ -10,6 +10,7 @@ */ require_once(dirname(__FILE__) . "/../../config.inc.php"); require_once("common.php"); +require_once("../functions/requirement_mgr.class.php"); testlinkInitPage($db,false,false,"checkRights"); $cfield_mgr = new cfield_mgr($db); @@ -75,6 +76,8 @@ case 'do_delete': $op = doDelete($args,$cfield_mgr); + $reqMgr = new requirement_mgr($db); + $reqMgr->deleteNotificationFieldAssignmentsByFieldId($args->tproject_id,$args->cfield_id); $user_feedback = $op->user_feedback; $operation_descr=$op->operation_descr; $templateCfg->template = $op->template; diff --git a/lib/functions/object.class.php b/lib/functions/object.class.php index 056576f3e0..dba521a902 100644 --- a/lib/functions/object.class.php +++ b/lib/functions/object.class.php @@ -278,6 +278,7 @@ static public function getDBTables($tableNames = null) 'requirements' => DB_TABLE_PREFIX . 'requirements', 'req_versions' => DB_TABLE_PREFIX . 'req_versions', 'req_revisions' => DB_TABLE_PREFIX . 'req_revisions', + 'req_notify_assignments' => DB_TABLE_PREFIX . 'req_notify_assignments', 'rights' => DB_TABLE_PREFIX . 'rights', 'risk_assignments' => DB_TABLE_PREFIX . 'risk_assignments', 'role_rights' => DB_TABLE_PREFIX . 'role_rights', diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index 7a2b75574c..1090682bf9 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -3974,7 +3974,224 @@ function inlineImageProcessing($idCard,$scope,$rosettaStone) } } + /* + function: createNotificationFieldAssignment + + args: t_project_id: current project id as int + field_name: the name of the field of which the values should be assigned as string + assignment_set: map of values and the user, who will be contacted + */ + function createNotificationFieldAssignment($t_project_id, $field_name, &$assignment_set) + { + $t_lang = isset($_SESSION['locale']) ? $_SESSION['locale'] : TL_DEFAULT_LOCALE; + //the status field always gets ID 0, because it is not a custom field. for custom fields, the id must be fetched first + $fieldId = 0; + if(strCmp($field_name,"Status") !== 0) { + $sql = "SELECT id FROM custom_fields WHERE name=\"$field_name\""; + $results = $this->db->fetchRowsIntoMap($sql,"id"); + if(isset($results)) { + foreach($results as $val) { + $fieldId = $val["id"]; + } + } else { + $fieldId = -1; + } + } + else { + //for reasons of localization the field values of the status field will always be written to the database in english language. + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $assignment_set_new = array(); + foreach($assignment_set as $fieldVal => $userName) { + foreach($statusFieldValsLocalized as $index => $fieldValLocalized) { + if(strcmp($fieldVal,$fieldValLocalized) == 0) { + $assignment_set_new[$statusFieldValsEN[$index]] = $userName; + } + } + } + $assignment_set = $assignment_set_new; + } + + //insert the data if the field name is valid + if(fieldId >= 0) { + $sql = "SELECT field_id" + . " FROM req_notify_assignments" + . " WHERE test_project_id=$t_project_id" + . " AND field_id=$fieldId"; + + $retValSet = $this->db->fetchRowsIntoMap($sql,"field_id"); + if(isset($retValSet)) { + $sql = "DELETE FROM req_notify_assignments" + . " WHERE test_project_id=$t_project_id AND field_id=$fieldId"; + $this->db->exec_query($sql); + } + $insertInto = "INSERT INTO req_notify_assignments (test_project_id,field_id,field_value,assigned_user_id) VALUES"; + $sql=$insertInto; + foreach($assignment_set as $key => $val) { + if(strlen($val)>0) { + $sql .= " ($t_project_id,$fieldId,\"$key\",(SELECT id FROM users WHERE login=\"$val\")),"; + } + } + if(strlen($sql)>strlen($insertInto)) { + $sql=rtrim($sql, ","); + $sql.=";"; + $this->db->exec_query($sql); + } + } + } + + /* + function: deleteNotificationFieldAssignmentsByFieldName + + args: t_project_id: current project id as int + field_name: the name of the field of which the assignments should be deleted + */ + function deleteNotificationFieldAssignmentsByFieldName($t_project_id,$fieldName) { + //the status field is handeld specificly, because it is not a custom field always gets id=0; + if(strCmp($fieldName,"Status")===0){ + $sql = "DELETE FROM req_notify_assignments " + . "WHERE test_project_id=$t_project_id AND field_id=0"; + } else { + $sql = "DELETE FROM req_notify_assignments " + . "WHERE test_project_id=$t_project_id AND field_id=(SELECT id FROM custom_fields WHERE name=\"$fieldName\")"; + } + + $this->db->exec_query($sql); + } + + function deleteNotificationFieldAssignmentsByFieldId($t_project_id,$fieldId) { + //the status field is handeld specificly, because it is not a custom field always gets id=0; + $sql = "DELETE FROM req_notify_assignments " + . "WHERE test_project_id=$t_project_id AND field_id=$fieldId"; + + $this->db->exec_query($sql); + } + + /* + function: getAllNotificationFieldAssignments + args: t_project_id: current project id as int + */ + function getAllNotificationFieldAssignments($t_project_id) + { + $sql="SELECT custom_fields.name,field_value,login" + ." FROM req_notify_assignments,users,custom_fields" + ." WHERE test_project_id=$t_project_id" + ." AND users.id = req_notify_assignments.assigned_user_id" + ." AND custom_fields.id=req_notify_assignments.field_id" + ." ORDER BY test_project_id, custom_fields.name;"; + + $results = $this->db->get_recordset($sql); + + $currentFieldName = ""; + + //tansform the results into a datastructure which is better usable + foreach($results as $key => $val) { + if(strcmp($currentFieldName,$results[$key]["name"])!==0) { + $currentFieldName = $results[$key]["name"]; + $transformedResults[$currentFieldName]["field_value"] = array(); + $transformedResults[$currentFieldName]["user_name"] = array(); + } + array_push($transformedResults[$currentFieldName]["field_value"],$val["field_value"]); + array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); + } + + //fetch Assignements for "Status"-field seperately, because it is not a custom field + $sql="SELECT field_value,login" + ." FROM req_notify_assignments,users" + ." WHERE test_project_id=$t_project_id" + ." AND users.id = req_notify_assignments.assigned_user_id" + ." AND req_notify_assignments.field_id = 0" + ." ORDER BY test_project_id;"; + + $results = $this->db->get_recordset($sql); + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + foreach($results as $key => $val) { + $localizedFieldVal = $val["field_value"]; + if(strcmp($currentFieldName,"Status")!==0) { + $currentFieldName = "Status"; + $transformedResults[$currentFieldName]["field_value"] = array(); + $transformedResults[$currentFieldName]["user_name"] = array(); + } + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$localizedFieldVal)==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } + } + array_push($transformedResults[$currentFieldName]["field_value"],$localizedFieldVal); + array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); + } + + return $transformedResults; + } - -} // class end + + function getStatusFieldValsLocaledForAssignment($langStr = null) { + $fieldVals = array(8); + $fieldVals[0] = lang_get("req_status_draft", $langStr); + $fieldVals[1] = lang_get("req_status_review", $langStr); + $fieldVals[2] = lang_get("req_status_rework", $langStr); + $fieldVals[3] = lang_get("req_status_finish", $langStr); + $fieldVals[4] = lang_get("req_status_implemented", $langStr); + $fieldVals[5] = lang_get("req_status_obsolete", $langStr); + $fieldVals[6] = lang_get("req_status_not_testable", $langStr); + $fieldVals[7] = lang_get("review_status_valid", $langStr); + return $fieldVals; + } + /* + function: getNotificationFieldAssignmentByFieldName + + args: t_project_id: current project id as int + field_name: the name of the field of which the values should be fetched + */ + function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { + if(strCmp($field_name,"Status") === 0) { + $sql="SELECT field_value,login" + ." FROM req_notify_assignments,users" + ." WHERE test_project_id=$t_project_id" + ." AND users.id = req_notify_assignments.assigned_user_id" + ." AND req_notify_assignments.field_id = 0"; + } else { + $sql="SELECT field_value,login" + ." FROM req_notify_assignments,users,custom_fields" + ." WHERE test_project_id=$t_project_id" + ." AND users.id = req_notify_assignments.assigned_user_id" + ." AND custom_fields.name = \"$field_name\"" + ." AND custom_fields.id=req_notify_assignments.field_id" + ." ORDER BY test_project_id, custom_fields.name;"; + } + + //tansform the results into a datastructure which is better usable + $transformedResults = array(); + $results = $this->db->get_recordset($sql); + + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + + $transformedResults[$field_name]["field_value"] = array(); + $transformedResults[$field_name]["user_name"] = array(); + foreach($results as $key => $val) { + + $localizedFieldVal = $val["field_value"]; + if(strcmp($currentFieldName,"Status")!==0) { + $currentFieldName = "Status"; + $transformedResults[$currentFieldName]["field_value"] = array(); + $transformedResults[$currentFieldName]["user_name"] = array(); + } + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$localizedFieldVal)==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } + } + array_push($transformedResults[$field_name]["field_value"],$localizedFieldVal); + array_push($transformedResults[$field_name]["user_name"],$val["login"]); + } + + return $transformedResults; + } +} // class end \ No newline at end of file diff --git a/lib/general/mainPage.php b/lib/general/mainPage.php index 5a47b6d7e2..80aca78d9e 100644 --- a/lib/general/mainPage.php +++ b/lib/general/mainPage.php @@ -152,7 +152,7 @@ $gui->opt_requirements = isset($_SESSION['testprojectOptions']->requirementsEnabled) ? $_SESSION['testprojectOptions']->requirementsEnabled : null; - +$gui->userRole = $_SESSION["currentUser"]->globalRole->name; $smarty->assign('gui',$gui); $smarty->display('mainPage.tpl'); diff --git a/lib/notificationassignments/notificationAssignmentConfig.php b/lib/notificationassignments/notificationAssignmentConfig.php new file mode 100644 index 0000000000..e9b78ff131 --- /dev/null +++ b/lib/notificationassignments/notificationAssignmentConfig.php @@ -0,0 +1,76 @@ + $val) { + $selectPos = strpos($key,"select_"); + if($selectPos !== false) { + $selectFieldValues[str_replace("_"," ",substr($key,$selectPos+7))] = $val; + } + } + $reqMgr->createNotificationFieldAssignment($args->tproject_id, $_realPOST["fieldName"], $selectFieldValues); +}elseif(array_key_exists("delete",$_realPOST)) { + $reqMgr->deleteNotificationFieldAssignmentsByFieldName($args->tproject_id,$_realPOST["fieldName"]); +} + +//create GUI +$gui = init_gui($db, $args, $reqMgr); +renderGUI($gui); + +function renderGUI($guiObj) +{ + global $g_tlLogger; + $templateCfg = templateConfiguration(); + + $smarty = new TLSmarty(); + $smarty->assign('gui', $guiObj); + $smarty->display($templateCfg->default_template); +} + +function init_gui(&$db, &$args, &$reqMgr) +{ + $commandMgr = new reqCommands($db); + $gui = $commandMgr->initGuiBean(); + + //only take custom fields which are of type "list" and are liked to requirements. + $tprojectMgr = new testproject($db); + $linkedCustomfields = $tprojectMgr->get_linked_custom_fields($args->tproject_id,"requirement"); + $fieldNamesForGUISize = 2; + foreach($linkedCustomfields as $key => $val) { + if($val["type"] == 6) { + $fieldNamesForGUISize++; + } + } + + $ArrFieldNamesForGUI = array(fieldNamesForGUISize); + $ArrFieldNamesForGUI[0] = ""; + $ArrFieldNamesForGUI["Status"] = "Status"; + for($i = 2; $i<=sizeof($linkedCustomfields)+1; $i++) { + if($linkedCustomfields[$i-1]["type"] == 6) { + $ArrFieldNamesForGUI[$linkedCustomfields[$i-1]["name"]] = $linkedCustomfields[$i-1]["name"]; + } + } + + $gui->fieldNames = $ArrFieldNamesForGUI; + $gui->assignments = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); + return $gui; +} + +function init_args(&$db) { + $args->tproject_id = isset($_SESSION['testprojectID']) ? intval($_SESSION['testprojectID']) : 0; + return $args; +} +?> \ No newline at end of file diff --git a/lib/notificationassignments/notificationAssignmentCreate.php b/lib/notificationassignments/notificationAssignmentCreate.php new file mode 100644 index 0000000000..daf9f3f667 --- /dev/null +++ b/lib/notificationassignments/notificationAssignmentCreate.php @@ -0,0 +1,63 @@ +assign('gui', $guiObj); + $smarty->display($templateCfg->default_template); +} + +function init_gui(&$db) +{ + $fieldName = $_POST["fieldName"]; + + $commandMgr = new reqCommands($db); + $reqMgr = new requirement_mgr($db); + $gui = $commandMgr->initGuiBean(); + //fetch the possible values of the given field + if(strcmp($fieldName,"Status") === 0) { + + $gui->fieldVals = $reqMgr->getStatusFieldValsLocaledForAssignment(); + } + else + { + $cfield_mgr = new cfield_mgr($db); + $selctedCField = $cfield_mgr->get_by_name($fieldName); + foreach($selctedCField as $val) { + $gui->fieldVals = explode("|",$val["possible_values"]); + } + } + + $args = init_args($db); + + $gui->fieldAssignments = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id,$fieldName); + $gui->fieldName = $fieldName; + $gui->users = getUsersForHtmlOptions($db,"WHERE active=1"); + return $gui; +} + +function init_args(&$db) { + $args->user_id = isset($_SESSION['userID']) ? $_SESSION['userID'] : 0; + $args->tproject_id = isset($_SESSION['testprojectID']) ? intval($_SESSION['testprojectID']) : 0; + return $args; +} +?> \ No newline at end of file diff --git a/lib/requirements/reqEdit.php b/lib/requirements/reqEdit.php index 738cadaee5..6af35dac7f 100644 --- a/lib/requirements/reqEdit.php +++ b/lib/requirements/reqEdit.php @@ -22,6 +22,8 @@ require_once("xml.inc.php"); require_once("configCheck.php"); require_once("web_editor.php"); +require_once("email_api.php"); +require_once('../functions/lang_api.php'); $editorCfg = getWebEditorCfg('requirement'); require_once(require_web_editor($editorCfg['type'])); @@ -32,11 +34,11 @@ $commandMgr = new reqCommands($db); $args = init_args($db); +sendMailOnStatusChange($db,$args); $gui = initialize_gui($db,$args,$commandMgr); - - $pFn = $args->doAction; $op = null; + if(method_exists($commandMgr,$pFn)) { $op = $commandMgr->$pFn($args,$_REQUEST); @@ -214,16 +216,17 @@ function renderGui(&$argsObj,$guiObj,$opObj,$templateCfg,$editorCfg,&$dbHandler) case "deleteFile": $renderType = 'template'; $key2loop = get_object_vars($opObj); + foreach($key2loop as $key => $value) { $guiObj->$key = $value; } - + // exceptions $guiObj->askForRevision = $opObj->suggest_revision ? 1 : 0; $guiObj->askForLog = $opObj->prompt_for_log ? 1 : 0; $guiObj->operation = isset($actionOpe[$argsObj->doAction]) ? $actionOpe[$argsObj->doAction] : $argsObj->doAction; - + $tplDir = (!isset($opObj->template_dir) || is_null($opObj->template_dir)) ? $templateCfg->template_dir : $opObj->template_dir; $tpl = is_null($opObj->template) ? $templateCfg->default_template : $opObj->template; @@ -295,7 +298,6 @@ function initialize_gui(&$dbHandler,&$argsObj,&$commandMgr) $gui->preSelectedType = TL_REQ_TYPE_USE_CASE; $gui->stay_here = $argsObj->stay_here; - return $gui; } @@ -304,4 +306,83 @@ function checkRights(&$db,&$user) { return ($user->hasRight($db,'mgt_view_req') && $user->hasRight($db,'mgt_modify_req')); } + +function getStatusIdentifier($statusAbbr) { + $fullStatusName = ""; + switch($statusAbbr) { + case "D": $fullStatusName = lang_get("req_status_draft"); break; + case "R": $fullStatusName = lang_get("req_status_review"); break; + case "W": $fullStatusName = lang_get("req_status_rework"); break; + case "F": $fullStatusName = lang_get("req_status_finish"); break; + case "I": $fullStatusName = lang_get("req_status_implemented"); break; + case "V": $fullStatusName = lang_get("review_status_valid"); break; + case "N": $fullStatusName = lang_get("req_status_not_testable"); break; + case "O": $fullStatusName = lang_get("req_status_obsolete"); break; + } + return $fullStatusName; +} + +function sendMailOnStatusChange(&$db,&$args) +{ + if(strcmp($_POST["req_spec_id"],"") !== 0) { + $fieldMetadataMgr = new cfield_mgr($db); + $reqMgr = new requirement_mgr($db); + $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; + $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); + + foreach($fieldNames as $fieldName => $fieldData) { + if(strcmp($fieldName,"Status") === 0) { + $reqState = $args->reqStatus; + $oldFieldVal = getStatusIdentifier($currentReq["status"]); + } + else + { + $fieldMetadata = array_pop($fieldMetadataMgr->get_by_name($fieldName)); + $customFieldPOSTName = "custom_field_".$fieldMetadata["type"]."_".$fieldMetadata["id"]; + + $reqState = $_POST[$customFieldPOSTName]; + + $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); + $oldFieldVal = NULL; + //richtiges cfield raussuchen + for($i = 1; $i<=sizeof($oldFieldValArr); $i++) { + if(strcmp($oldFieldValArr[$i]["name"], $fieldName) === 0) { + $oldFieldVal = trim($oldFieldValArr[$i]["value"]); + break; + } + } + } + if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { + //string contains

and

at the end/start + if(strcmp($fieldName,"Status") === 0) { + $reqState = getStatusIdentifier($reqState); + $fieldMetadata["id"] = 0; + } + + $scope = substr($currentReq["scope"],3,strlen($currentReq["scope"])-7); + $reqTitle = $currentReq["title"]; + $usersObj = new tlUser($db); + $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; + $req_doc_id = $currentReq[req_doc_id]; + $from = config_get("from_email"); + $sqlWhere = "WHERE id = (SELECT assigned_user_id" + ." FROM req_notify_assignments" + ." WHERE test_project_id = {$args->tproject_id}" + ." AND field_id = {$fieldMetadata["id"]}" + ." AND field_value = \"$reqState\")"; + + $to = array_pop(tlUser::getAll($db, $sqlWhere))->emailAddress; + $subject = "[Requirement State Change] ($reqState) $req_doc_id:$reqTitle"; + $body = lang_get('req_change_notification'); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%oldFieldVal", $oldFieldVal, $body); + $body = str_replace("%reqState", $reqState, $body); + $body = str_replace("%scope", $scope, $body); + + $retVal = email_send($from,$to,$subject,$body,'',false,true,null); + } + } + } +} ?> \ No newline at end of file diff --git a/locale/de_DE/strings.txt b/locale/de_DE/strings.txt index 6c80398b5e..d33b07b89f 100644 --- a/locale/de_DE/strings.txt +++ b/locale/de_DE/strings.txt @@ -3641,7 +3641,14 @@ $TLS_testCaseStatus_final = 'Finale'; // printDocument.php $TLS_report_test_plan_design = 'Test Plan Design Bericht'; $TLS_report_test_plan_execution = 'Test Plan Ausführungs Bericht'; -$TLS_execution_time_metrics = 'Ausführungs Zeit Metriken'; - +$TLS_execution_time_metrics = 'Ausführungs Zeit Metriken'; + +// notificationAssignmentConfig.tpl +$TLS_test_project_names = "Test Projekt"; +$TLS_assign_button_label = "Zuweisen"; +$TLS_assign_table_header_fieldvals = "Feld Werte"; +$TLS_assign_table_header_users = "Benutzernamen"; +$TLS_assign_btn_change = "Zuweisungen ändern"; +$TLS_assign_btn_delete = "Zuweisungen löschen"; // ----- END ------------------------------------------------------------------ ?> diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 581b5eac4b..586dcdf9d9 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -2406,6 +2406,7 @@ $TLS_build_number_help = 'Number of Builds'; $TLS_href_assign_user_roles = "Assign User Roles"; $TLS_href_browse_tc = "Browse Test Cases"; $TLS_href_cfields_management = "Define Custom Fields"; +$TLS_href_process_step_role_assignment = "Assign Roles to Process Steps"; $TLS_href_cfields_tproject_assign = "Assign Custom Fields"; $TLS_href_edit_tc = "Test Specification"; $TLS_href_inventory = "Inventory"; @@ -3961,9 +3962,18 @@ $TLS_display_ea_string ="Display attachement placeholder"; $TLS_hint_you_need_to_be_logged = "You need to be logged in order to use link"; $TLS_security_check_ko = 'Security check failed'; $TLS_issue_on_step = "Issue Executing Step number "; - + +// notificationAssignmentConfig.tpl +$TLS_test_project_names = "Test Project"; +$TLS_assign_button_label = "Assign"; +$TLS_assign_table_header_fieldvals = "Field Values"; +$TLS_assign_table_header_users = "User Names"; +$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_assign_btn_change = "Change Assignment"; +$TLS_assign_btn_delete = "Delete Assignment"; +======= $TLS_add_link_to_tlexec = "Add Link in Issue Tracker to Test Case Execution Feature"; $TLS_dl2tl = 'Link to TestLink Execution: '; $TLS_old_style_login = 'Well known login screen'; -$TLS_new_style_login = 'Try the new login screen'; +$TLS_new_style_login = 'Try the new login screen'; // ----- END ------------------------------------------------------------------ From 6df8838225ba66a652d72d9840a61c0963d61952 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Thu, 21 Jan 2016 10:26:23 +0100 Subject: [PATCH 02/11] adding the table creation to the install script and solving minor syntax error --- install/sql/mysql/testlink_create_tables.sql | 12 ++++++++++-- locale/en_GB/strings.txt | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/install/sql/mysql/testlink_create_tables.sql b/install/sql/mysql/testlink_create_tables.sql index a372590b2a..683292a43e 100644 --- a/install/sql/mysql/testlink_create_tables.sql +++ b/install/sql/mysql/testlink_create_tables.sql @@ -685,8 +685,6 @@ CREATE TABLE /*prefix*/text_templates ( UNIQUE KEY idx_text_templates (type,title) ) DEFAULT CHARSET=utf8 COMMENT='Global Project Templates'; - - CREATE TABLE /*prefix*/testcase_relations ( `id` int(10) unsigned NOT NULL auto_increment, `source_id` int(10) unsigned NOT NULL, @@ -696,3 +694,13 @@ CREATE TABLE /*prefix*/testcase_relations ( `creation_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; + +CREATE TABLE `req_notify_assignments` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `test_project_id` int(11) NOT NULL, + `field_id` int(11) NOT NULL, + `field_value` varchar(64) NOT NULL, + `assigned_user_id` int(11) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `id_UNIQUE` (`id`) +) AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; \ No newline at end of file diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 586dcdf9d9..4625a0f58b 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -3971,7 +3971,7 @@ $TLS_assign_table_header_users = "User Names"; $TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_assign_btn_change = "Change Assignment"; $TLS_assign_btn_delete = "Delete Assignment"; -======= + $TLS_add_link_to_tlexec = "Add Link in Issue Tracker to Test Case Execution Feature"; $TLS_dl2tl = 'Link to TestLink Execution: '; $TLS_old_style_login = 'Well known login screen'; From d8e411c15577ff22955bb9dd202cc55412211d3c Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Thu, 21 Jan 2016 14:04:47 +0100 Subject: [PATCH 03/11] Minor bugfixes. --- config.inc.php | 20 ++++++++++--------- .../notificationAssignmentConfig.php | 12 +++++++++++ lib/requirements/reqEdit.php | 7 +++++-- 3 files changed, 28 insertions(+), 11 deletions(-) diff --git a/config.inc.php b/config.inc.php index 7c984b5f76..6ceae8e8ea 100644 --- a/config.inc.php +++ b/config.inc.php @@ -185,7 +185,7 @@ * for security reasons (see http://itsecuritysolutions.org/2012-08-13-TestLink-1.9.3-multiple-vulnerabilities/) * put it out of reach via web or configure access denied. */ -$tlCfg->log_path = '/var/testlink/logs/'; /* unix example */ +$tlCfg->log_path = 'C:\xampp\htdocs\TestlinkNew\logs'; /* unix example */ /** @@ -244,7 +244,7 @@ * Configure using custom_config.inc.php * @uses lib/functions/email_api.php */ -$g_smtp_host = '[smtp_host_not_configured]'; # SMTP server MUST BE configured +//$g_smtp_host = 'mail.gmx.de'; # SMTP server MUST BE configured # Configure using custom_config.inc.php $g_tl_admin_email = '[testlink_sysadmin_email_not_configured]'; # for problem/error notification @@ -255,7 +255,7 @@ * Email notification priority (low by default) * Urgent = 1, Not Urgent = 5, Disable = 0 **/ -$g_mail_priority = 5; +//$g_mail_priority = 5; /** * Taken from mantis for phpmailer config @@ -267,22 +267,22 @@ $g_phpMailer_method = PHPMAILER_METHOD_SMTP; /** Configure only if SMTP server requires authentication */ -$g_smtp_username = ''; # user -$g_smtp_password = ''; # password +//$g_smtp_username = 'lion_milka@gmx.de'; # user +//$g_smtp_password = '!234abcD'; # password /** * This control the connection mode to SMTP server. * Can be '', 'ssl','tls' * @global string $g_smtp_connection_mode */ -$g_smtp_connection_mode = ''; +$g_smtp_connection_mode = 'tls'; /** * The smtp port to use. The typical SMTP ports are 25 and 587. The port to use * will depend on the SMTP server configuration and hence others may be used. * @global int $g_smtp_port */ -$g_smtp_port = 25; +$g_smtp_port = 587; // ---------------------------------------------------------------------------- @@ -1111,7 +1111,7 @@ * Put it out of reach via web or configure access denied. * **/ -$g_repositoryPath = '/var/testlink/upload_area/'; /* unix example */ +$g_repositoryPath = 'C:\xampp\htdocs\TestlinkNew\upload_area'; /* unix example */ /** * compression used within the repository @@ -1431,7 +1431,9 @@ $tlCfg->tree_filter_cfg->testcases->edit_mode->filter_execution_type = ENABLED; $tlCfg->tree_filter_cfg->testcases->edit_mode->filter_custom_fields = ENABLED; $tlCfg->tree_filter_cfg->testcases->edit_mode->filter_workflow_status = ENABLED; -$tlCfg->tree_filter_cfg->testcases->edit_mode->advanced_filter_mode_choice = ENABLED; + +// filter mode choice disabled for this mode because there are no filters benefiting from it +$tlCfg->tree_filter_cfg->testcases->edit_mode->advanced_filter_mode_choice = DISABLED; $tlCfg->tree_filter_cfg->testcases->plan_mode->filter_tc_id = ENABLED; diff --git a/lib/notificationassignments/notificationAssignmentConfig.php b/lib/notificationassignments/notificationAssignmentConfig.php index e9b78ff131..f5b201ea71 100644 --- a/lib/notificationassignments/notificationAssignmentConfig.php +++ b/lib/notificationassignments/notificationAssignmentConfig.php @@ -73,4 +73,16 @@ function init_args(&$db) { $args->tproject_id = isset($_SESSION['testprojectID']) ? intval($_SESSION['testprojectID']) : 0; return $args; } + +function getRealInput($source) { + $pairs = explode("&", $source == 'POST' ? file_get_contents("php://input") : $_SERVER['QUERY_STRING']); + $vars = array(); + foreach ($pairs as $pair) { + $nv = explode("=", $pair); + $name = urldecode($nv[0]); + $value = urldecode($nv[1]); + $vars[$name] = $value; + } + return $vars; +} ?> \ No newline at end of file diff --git a/lib/requirements/reqEdit.php b/lib/requirements/reqEdit.php index 6af35dac7f..b4290b84c5 100644 --- a/lib/requirements/reqEdit.php +++ b/lib/requirements/reqEdit.php @@ -324,6 +324,7 @@ function getStatusIdentifier($statusAbbr) { function sendMailOnStatusChange(&$db,&$args) { + mLog($_POST["req_spec_id"]); if(strcmp($_POST["req_spec_id"],"") !== 0) { $fieldMetadataMgr = new cfield_mgr($db); $reqMgr = new requirement_mgr($db); @@ -332,7 +333,7 @@ function sendMailOnStatusChange(&$db,&$args) foreach($fieldNames as $fieldName => $fieldData) { if(strcmp($fieldName,"Status") === 0) { - $reqState = $args->reqStatus; + $reqState = getStatusIdentifier($args->reqStatus); $oldFieldVal = getStatusIdentifier($currentReq["status"]); } else @@ -352,10 +353,12 @@ function sendMailOnStatusChange(&$db,&$args) } } } + + mLog("reqState: $reqState, oldFieldVal: $oldFieldVal"); if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { //string contains

and

at the end/start if(strcmp($fieldName,"Status") === 0) { - $reqState = getStatusIdentifier($reqState); + //$reqState = getStatusIdentifier($reqState); $fieldMetadata["id"] = 0; } From 369c0d29e1dfe3228f4c625c995458438985c682 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Thu, 21 Jan 2016 14:29:23 +0100 Subject: [PATCH 04/11] log commands removed. --- lib/requirements/reqEdit.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/requirements/reqEdit.php b/lib/requirements/reqEdit.php index b4290b84c5..d2dc4e1748 100644 --- a/lib/requirements/reqEdit.php +++ b/lib/requirements/reqEdit.php @@ -324,7 +324,6 @@ function getStatusIdentifier($statusAbbr) { function sendMailOnStatusChange(&$db,&$args) { - mLog($_POST["req_spec_id"]); if(strcmp($_POST["req_spec_id"],"") !== 0) { $fieldMetadataMgr = new cfield_mgr($db); $reqMgr = new requirement_mgr($db); @@ -354,7 +353,6 @@ function sendMailOnStatusChange(&$db,&$args) } } - mLog("reqState: $reqState, oldFieldVal: $oldFieldVal"); if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { //string contains

and

at the end/start if(strcmp($fieldName,"Status") === 0) { From 2813eca1650b58747d05fb5cab93990cb67a7366 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Wed, 10 Feb 2016 10:19:50 +0100 Subject: [PATCH 05/11] build the subscription mechanisms for requirements (see mantis id 0007386) --- .../requirements/reqViewVersionsViewer.tpl | 24 +++++- install/sql/mysql/testlink_create_tables.sql | 9 +- lib/functions/requirement_mgr.class.php | 55 ++++++++++-- .../notificationAssignmentConfig.php | 6 +- lib/requirements/reqEdit.php | 84 +++++++++++++------ lib/requirements/reqView.php | 33 +++++++- locale/de_DE/strings.txt | 3 +- locale/en_GB/strings.txt | 8 +- 8 files changed, 180 insertions(+), 42 deletions(-) diff --git a/gui/templates/requirements/reqViewVersionsViewer.tpl b/gui/templates/requirements/reqViewVersionsViewer.tpl index ff207787ec..4e8f63830e 100644 --- a/gui/templates/requirements/reqViewVersionsViewer.tpl +++ b/gui/templates/requirements/reqViewVersionsViewer.tpl @@ -13,7 +13,7 @@ viewer for requirement testproject,title_last_mod,title_created,by,btn_compare_versions,showing_version, revision,btn_view_history,btn_new_revision,btn_print_view,specific_direct_link, design,execution_history,btn_unfreeze_this_version,addLinkToTestCase,btn_save, - removeLinkToTestCase,requirement,actions"} + removeLinkToTestCase,requirement,actions,btn_subscribe,btn_unsubscribe"} {$hrefReqSpecMgmt="lib/general/frmWorkArea.php?feature=reqSpecMgmt"} {$hrefReqSpecMgmt="$basehref$hrefReqSpecMgmt"} @@ -107,11 +107,29 @@ viewer for requirement {/if} + {* Option to print single requirement *} -
- + + + {if $gui->isSubed == 1} + + {elseif $gui->isSubed == 0} + + {/if}


{* class="groupBtn" *} diff --git a/install/sql/mysql/testlink_create_tables.sql b/install/sql/mysql/testlink_create_tables.sql index 683292a43e..e7a696f3ac 100644 --- a/install/sql/mysql/testlink_create_tables.sql +++ b/install/sql/mysql/testlink_create_tables.sql @@ -703,4 +703,11 @@ CREATE TABLE `req_notify_assignments` ( `assigned_user_id` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id_UNIQUE` (`id`) -) AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; \ No newline at end of file +) AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; + +CREATE TABLE `req_subscription` ( + `fk_req_id` int(11) NOT NULL, + `fk_user_id` int(11) NOT NULL, + `tproject_id` int(11) NOT NULL, + PRIMARY KEY (`fk_req_id`,`fk_user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index 6996ac3c24..6ac5fa9e91 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -4178,11 +4178,6 @@ function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { foreach($results as $key => $val) { $localizedFieldVal = $val["field_value"]; - if(strcmp($currentFieldName,"Status")!==0) { - $currentFieldName = "Status"; - $transformedResults[$currentFieldName]["field_value"] = array(); - $transformedResults[$currentFieldName]["user_name"] = array(); - } foreach($statusFieldValsEN as $index => $fieldValEN) { if(strcmp($fieldValEN,$localizedFieldVal)==0){ $localizedFieldVal = $statusFieldValsLocalized[$index]; @@ -4195,4 +4190,54 @@ function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { return $transformedResults; } + + function getSubedUsers($tproject_id, $requirement_id) { + $sql = "SELECT id, login, email" + ." FROM users, req_subscription" + ." WHERE req_subscription.fk_req_id = $requirement_id" + ." AND req_subscription.fk_user_id = users.id" + ." AND req_subscription.tproject_id = $tproject_id;"; + $results = $this->db->get_recordset($sql); + return $results; + } + + function createSubscription($tproject_id, $requirement_id, $userId) { + $sql = "SELECT id" + ." FROM requirements" + ." WHERE requirements.id = $requirement_id;"; + $results = $this->db->get_recordset($sql); + if(!isset($results)) { + return; + } + + $sql = "SELECT id" + ." FROM users" + ." WHERE users.id = $userId;"; + $results = $this->db->get_recordset($sql); + if(!isset($results)) { + return; + } + + $sql = "SELECT fk_req_id" + ." FROM req_subscription" + ." WHERE fk_user_id = $userId" + ." AND fk_req_id = $requirement_id;"; + $results = $this->db->get_recordset($sql); + if(isset($results)) { + return; + } + + $sql = "INSERT INTO req_subscription" + ." VALUES ($requirement_id,$userId,$tproject_id);"; + $this->db->exec_query($sql); + } + + function removeSubscription($tproject_id, $requirement_id, $userId) { + $sql = "DELETE FROM req_subscription" + ." WHERE req_subscription.fk_req_id = $requirement_id" + ." AND req_subscription.fk_user_id = $userId" + ." AND req_subscription.tproject_id = $tproject_id;"; + + $this->db->exec_query($sql); + } } // class end \ No newline at end of file diff --git a/lib/notificationassignments/notificationAssignmentConfig.php b/lib/notificationassignments/notificationAssignmentConfig.php index f5b201ea71..d3f903128d 100644 --- a/lib/notificationassignments/notificationAssignmentConfig.php +++ b/lib/notificationassignments/notificationAssignmentConfig.php @@ -58,9 +58,9 @@ function init_gui(&$db, &$args, &$reqMgr) $ArrFieldNamesForGUI = array(fieldNamesForGUISize); $ArrFieldNamesForGUI[0] = ""; $ArrFieldNamesForGUI["Status"] = "Status"; - for($i = 2; $i<=sizeof($linkedCustomfields)+1; $i++) { - if($linkedCustomfields[$i-1]["type"] == 6) { - $ArrFieldNamesForGUI[$linkedCustomfields[$i-1]["name"]] = $linkedCustomfields[$i-1]["name"]; + foreach($linkedCustomfields as $customField) { + if($customField["type"] == 6) { + $ArrFieldNamesForGUI[$customField["name"]] = $customField["name"]; } } diff --git a/lib/requirements/reqEdit.php b/lib/requirements/reqEdit.php index d2dc4e1748..7c661b40e3 100644 --- a/lib/requirements/reqEdit.php +++ b/lib/requirements/reqEdit.php @@ -24,6 +24,7 @@ require_once("web_editor.php"); require_once("email_api.php"); require_once('../functions/lang_api.php'); +require_once('../functions/object.class.php'); $editorCfg = getWebEditorCfg('requirement'); require_once(require_web_editor($editorCfg['type'])); @@ -307,17 +308,17 @@ function checkRights(&$db,&$user) return ($user->hasRight($db,'mgt_view_req') && $user->hasRight($db,'mgt_modify_req')); } -function getStatusIdentifier($statusAbbr) { +function getStatusIdentifier($statusAbbr, $langStr=null) { $fullStatusName = ""; switch($statusAbbr) { - case "D": $fullStatusName = lang_get("req_status_draft"); break; - case "R": $fullStatusName = lang_get("req_status_review"); break; - case "W": $fullStatusName = lang_get("req_status_rework"); break; - case "F": $fullStatusName = lang_get("req_status_finish"); break; - case "I": $fullStatusName = lang_get("req_status_implemented"); break; - case "V": $fullStatusName = lang_get("review_status_valid"); break; - case "N": $fullStatusName = lang_get("req_status_not_testable"); break; - case "O": $fullStatusName = lang_get("req_status_obsolete"); break; + case "D": $fullStatusName = lang_get("req_status_draft",$langStr); break; + case "R": $fullStatusName = lang_get("req_status_review",$langStr); break; + case "W": $fullStatusName = lang_get("req_status_rework",$langStr); break; + case "F": $fullStatusName = lang_get("req_status_finish",$langStr); break; + case "I": $fullStatusName = lang_get("req_status_implemented",$langStr); break; + case "V": $fullStatusName = lang_get("review_status_valid",$langStr); break; + case "N": $fullStatusName = lang_get("req_status_not_testable",$langStr); break; + case "O": $fullStatusName = lang_get("req_status_obsolete",$langStr); break; } return $fullStatusName; } @@ -326,14 +327,24 @@ function sendMailOnStatusChange(&$db,&$args) { if(strcmp($_POST["req_spec_id"],"") !== 0) { $fieldMetadataMgr = new cfield_mgr($db); + $usersObj = new tlUser($db); $reqMgr = new requirement_mgr($db); $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); + $scope = $args->scope; + $reqTitle = $currentReq["title"]; + $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; + $from = config_get("from_email"); + $subbedUsers = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); + $req_doc_id = $currentReq["req_doc_id"]; + foreach($fieldNames as $fieldName => $fieldData) { if(strcmp($fieldName,"Status") === 0) { $reqState = getStatusIdentifier($args->reqStatus); $oldFieldVal = getStatusIdentifier($currentReq["status"]); + $fieldMetadata["id"] = 0; + $fieldMetadata["name"] = "Status"; } else { @@ -345,35 +356,33 @@ function sendMailOnStatusChange(&$db,&$args) $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); $oldFieldVal = NULL; //richtiges cfield raussuchen - for($i = 1; $i<=sizeof($oldFieldValArr); $i++) { - if(strcmp($oldFieldValArr[$i]["name"], $fieldName) === 0) { - $oldFieldVal = trim($oldFieldValArr[$i]["value"]); + foreach($oldFieldValArr as $oldFieldValEle) { + if(strcmp($oldFieldValEle["name"], $fieldName) === 0) { + $oldFieldVal = trim($oldFieldValEle["value"]); break; } } } if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { - //string contains

and

at the end/start + $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); if(strcmp($fieldName,"Status") === 0) { - //$reqState = getStatusIdentifier($reqState); - $fieldMetadata["id"] = 0; + $reqState = getStatusIdentifier($args->reqStatus, "en_GB"); } - - $scope = substr($currentReq["scope"],3,strlen($currentReq["scope"])-7); - $reqTitle = $currentReq["title"]; - $usersObj = new tlUser($db); - $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; - $req_doc_id = $currentReq[req_doc_id]; - $from = config_get("from_email"); $sqlWhere = "WHERE id = (SELECT assigned_user_id" ." FROM req_notify_assignments" ." WHERE test_project_id = {$args->tproject_id}" ." AND field_id = {$fieldMetadata["id"]}" ." AND field_value = \"$reqState\")"; + if(strcmp($fieldName,"Status") === 0) { + $reqState = getStatusIdentifier($args->reqStatus); + } - $to = array_pop(tlUser::getAll($db, $sqlWhere))->emailAddress; - $subject = "[Requirement State Change] ($reqState) $req_doc_id:$reqTitle"; + $assignedUsers = tlUser::getAll($db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); + $subject = lang_get('req_change_notification_subject'); + $subject = str_replace("%reqState", $reqState, $subject); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); $body = lang_get('req_change_notification'); $body = str_replace("%reqTitle", $reqTitle, $body); $body = str_replace("%modifier", $modifier, $body); @@ -381,7 +390,32 @@ function sendMailOnStatusChange(&$db,&$args) $body = str_replace("%reqState", $reqState, $body); $body = str_replace("%scope", $scope, $body); - $retVal = email_send($from,$to,$subject,$body,'',false,true,null); + foreach($assignedUsers as $assignedUser) { + $retVal = email_send($from,$assignedUser->emailAddress,$subject,$body,'',false,true,null); + foreach($subbedUsers as $key => $subbedUser) { + if(strcmp($subbedUser["login"],$assignedUser->login) == 0) { + unset($subbedUsers[$key]); + break; + } + } + } + } + } + + mlog($args); + //send mail to all subbed users + $subject = lang_get("req_change_subscribtion_subject"); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $body = lang_get("req_change_subscribtion"); + $body = str_replace("%log_msg", $args->log_message, $body); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%scope", $scope, $body); + + if(sizeof($subbedUsers)>0){ + foreach($subbedUsers as $subbedUser) { + $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); } } } diff --git a/lib/requirements/reqView.php b/lib/requirements/reqView.php index 8656fcae5c..8c689a8e7b 100644 --- a/lib/requirements/reqView.php +++ b/lib/requirements/reqView.php @@ -13,23 +13,52 @@ * */ require_once('../../config.inc.php'); +require_once('../../custom_config.inc.php'); require_once('common.php'); require_once('attachments.inc.php'); require_once('requirements.inc.php'); require_once('users.inc.php'); -testlinkInitPage($db,false,false,"checkRights"); +testlinkInitPage($db,false,false,"checkRights"); $templateCfg = templateConfiguration(); - $tproject_mgr = new testproject($db); $args = init_args(); $gui = initialize_gui($db,$args,$tproject_mgr); +$reqMgr = new requirement_mgr($db); +if(array_key_exists("subscribe",$_POST)) { + if(strcmp($_POST["subscribe"],lang_get("btn_subscribe")) === 0) { + $reqMgr->createSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $gui->isSubed = 1; + } + elseif (strcmp($_POST["subscribe"],lang_get("btn_unsubscribe")) === 0) { + $reqMgr->removeSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $gui->isSubed = 0; + } +} +else { + $gui->isSubed = 0; + $users = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); + foreach($users as $user) { + if($user["id"] === $args->userID) { + $gui->isSubed = 1; + break; + } + } +} $smarty = new TLSmarty(); $smarty->assign('gui',$gui); $smarty->display($templateCfg->template_dir . 'reqViewVersions.tpl'); + +function subscribeUser($user_id, $req_id) { + +} + +function unsubscribeUser() { + +} /** * */ diff --git a/locale/de_DE/strings.txt b/locale/de_DE/strings.txt index d33b07b89f..265d574a05 100644 --- a/locale/de_DE/strings.txt +++ b/locale/de_DE/strings.txt @@ -930,7 +930,8 @@ $TLS_revision_log_title = "Änderungsprotokoll"; $TLS_please_add_revision_log = "Bitte protokollieren Sie die Änderung."; $TLS_commit_title = "Änderungsprotokoll"; $TLS_please_add_reason_log = "Bitte geben Sie einen Grund für Änderung an."; - +$TLS_btn_subscribe = "Abonnieren"; +$TLS_btn_unsubscribe = "Abo beenden"; // gui/templates/buildEdit.tpl diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 4625a0f58b..7695d60b4c 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -1046,7 +1046,8 @@ $TLS_revision_log_title = "Revision Log"; $TLS_please_add_revision_log = "Please add a log message"; $TLS_commit_title = "Log message"; $TLS_please_add_reason_log = "Please add reason for changes"; - +$TLS_btn_subscribe = "Subscribe"; +$TLS_btn_unsubscribe = "Unsubscribe"; // gui/templates/buildEdit.tpl @@ -3968,7 +3969,10 @@ $TLS_test_project_names = "Test Project"; $TLS_assign_button_label = "Assign"; $TLS_assign_table_header_fieldvals = "Field Values"; $TLS_assign_table_header_users = "User Names"; -$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_change_notification_subject = "[Requirement State Change] (%reqState) %req_doc_id:%reqTitle"; +$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_change_subscribtion_subject = "[Requirement State Change] %req_doc_id:%reqTitle"; +$TLS_req_change_subscribtion = "

Requirement '%reqTitle' was updated by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_assign_btn_change = "Change Assignment"; $TLS_assign_btn_delete = "Delete Assignment"; From c13b630665e48e47fc2f3d4e2b813ae27caebc67 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Fri, 12 Feb 2016 09:53:26 +0100 Subject: [PATCH 06/11] notification for subbed users on requirement delete, change, version create and version delete --- lib/requirements/reqCommands.class.php | 196 ++++++++++++++++++++++++- lib/requirements/reqEdit.php | 114 -------------- locale/en_GB/strings.txt | 16 +- 3 files changed, 205 insertions(+), 121 deletions(-) diff --git a/lib/requirements/reqCommands.class.php b/lib/requirements/reqCommands.class.php index 20d64ec2c0..3441e9ec60 100644 --- a/lib/requirements/reqCommands.class.php +++ b/lib/requirements/reqCommands.class.php @@ -159,6 +159,7 @@ function edit(&$argsObj,$request,$overwriteArgs=true) $obj->reqTypeDomain = $this->reqTypeDomain; $obj->req_spec_id = $argsObj->req_spec_id; $obj->req_id = $argsObj->req_id; + $obj->req_id = $argsObj->req_id; $obj->req_version_id = $argsObj->req_version_id; $obj->expected_coverage = $argsObj->expected_coverage; @@ -252,7 +253,9 @@ function doUpdate(&$argsObj,$request) $obj = $this->initGuiBean(); $descr_prefix = lang_get('req') . TITLE_SEP; $ret['msg'] = null; - + + $this->sendMailOnStatusChange($this->db,$argsObj); + // Before Update want to understand what has changed regarding previous version/revision $oldData = $this->reqMgr->get_by_id($argsObj->req_id,$argsObj->req_version_id); $oldCFields = $this->reqMgr->get_linked_cfields(null,$argsObj->req_version_id,$argsObj->tproject_id); @@ -329,7 +332,8 @@ function doUpdate(&$argsObj,$request) { $obj->suggest_revision = true; } - return $obj; + + return $obj; } /** @@ -338,6 +342,27 @@ function doUpdate(&$argsObj,$request) */ function doDelete(&$argsObj,$request) { + $usersObj = new tlUser($this->db); + $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $currentReq["req_doc_id"]; + $reqTitle = $currentReq["title"]; + $scope = $currentReq["scope"]; + + $subject = lang_get('req_delete_subscribtion_subject'); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $body = lang_get('req_delete_subscribtion'); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%scope", $scope, $body); + $this->notifySubbedUsers($subject, $body, $argsObj); + $subbedUsers = $this->reqMgr->getSubedUsers($argsObj->tproject_id,$argsObj->requirement_id); + foreach($subbedUsers as $subbedUser) { + mlog($subbedUser); + $this->reqMgr->removeSubscription($argsObj->tproject_id, $argsObj->requirement_id,$subbedUser["id"]); + } + $obj = $this->initGuiBean(); $obj->display_path = false; $reqVersionSet = $this->reqMgr->get_by_id($argsObj->req_id); @@ -562,6 +587,25 @@ function: doCreateVersion */ function doCreateVersion(&$argsObj,$request) { + $usersObj = new tlUser($this->db); + $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; + + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $currentReq["req_doc_id"]; + $reqTitle = $currentReq["title"]; + $scope = $currentReq["scope"]; + $log_msg = $argsObj->log_message; + + $subject = lang_get('req_version_create_subscribtion_subject'); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $body = lang_get('req_version_create_subscribtion'); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%log_msg", $log_msg, $body); + $body = str_replace("%scope", $scope, $body); + $this->notifySubbedUsers($subject, $body, $argsObj); + $ret = $this->reqMgr->create_new_version($argsObj->req_id,$argsObj->user_id, $argsObj->req_version_id,$argsObj->log_message); $obj = $this->initGuiBean(); @@ -579,6 +623,29 @@ function doCreateVersion(&$argsObj,$request) */ function doDeleteVersion(&$argsObj,$request) { + $usersObj = new tlUser($this->db); + $reqversion = $this->reqMgr->get_version($argsObj->req_version_id); + $req = array_pop($this->reqMgr->getByDocID($reqversion["req_doc_id"])); + $argsObj->requirement_id = $req["id"]; + + mlog($argsObj); + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $reqversion["req_doc_id"]; + $reqTitle = $reqversion["title"]; + $scope = $reqversion["scope"]; + $versionNr = $reqversion["version"]; + mlog($currentReq); + + $subject = lang_get('req_version_delete_subscribtion_subject'); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $body = lang_get('req_version_delete_subscribtion'); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%scope", $scope, $body); + $body = str_replace("%versionNr", $versionNr, $body); + $this->notifySubbedUsers($subject, $body, $argsObj); + $obj = $this->initGuiBean(); $node = $this->reqMgr->tree_mgr->get_node_hierarchy_info($argsObj->req_version_id); $req_version = $this->reqMgr->get_by_id($node['parent_id'],$argsObj->req_version_id); @@ -942,5 +1009,128 @@ private function initGuiObjForAttachmentOperations($argsObj) return $guiObj; } - + private function sendMailOnStatusChange(&$db,&$args) + { + if(strcmp($_POST["req_spec_id"],"") !== 0) { + $fieldMetadataMgr = new cfield_mgr($db); + $usersObj = new tlUser($db); + $reqMgr = new requirement_mgr($db); + $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; + $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); + + $scope = $args->scope; + $reqTitle = $currentReq["title"]; + $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; + $from = config_get("from_email"); + $subbedUsers = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); + $req_doc_id = $currentReq["req_doc_id"]; + + foreach($fieldNames as $fieldName => $fieldData) { + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus); + $oldFieldVal = $this->getStatusIdentifier($currentReq["status"]); + $fieldMetadata["id"] = 0; + $fieldMetadata["name"] = "Status"; + } + else + { + $fieldMetadata = array_pop($fieldMetadataMgr->get_by_name($fieldName)); + $customFieldPOSTName = "custom_field_".$fieldMetadata["type"]."_".$fieldMetadata["id"]; + + $reqState = $_POST[$customFieldPOSTName]; + + $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); + $oldFieldVal = NULL; + //richtiges cfield raussuchen + foreach($oldFieldValArr as $oldFieldValEle) { + if(strcmp($oldFieldValEle["name"], $fieldName) === 0) { + $oldFieldVal = trim($oldFieldValEle["value"]); + break; + } + } + } + + mlog("Status: oldVal = $oldFieldVal | newVal = $reqState"); + if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { + $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus, "en_GB"); + } + $sqlWhere = "WHERE id = (SELECT assigned_user_id" + ." FROM req_notify_assignments" + ." WHERE test_project_id = {$args->tproject_id}" + ." AND field_id = {$fieldMetadata["id"]}" + ." AND field_value = \"$reqState\")"; + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus); + } + + $assignedUsers = tlUser::getAll($db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); + $subject = lang_get('req_change_notification_subject'); + $subject = str_replace("%reqState", $reqState, $subject); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $body = lang_get('req_change_notification'); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%oldFieldVal", $oldFieldVal, $body); + $body = str_replace("%reqState", $reqState, $body); + $body = str_replace("%scope", $scope, $body); + + foreach($assignedUsers as $assignedUser) { + $retVal = email_send($from,$assignedUser->emailAddress,$subject,$body,'',false,true,null); + foreach($subbedUsers as $key => $subbedUser) { + if(strcmp($subbedUser["login"],$assignedUser->login) == 0) { + unset($subbedUsers[$key]); + break; + } + } + } + } + } + + mlog($args); + //send mail to all subbed users + $subject = lang_get("req_change_subscribtion_subject"); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $body = lang_get("req_change_subscribtion"); + $body = str_replace("%log_msg", $args->log_message, $body); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%scope", $scope, $body); + + if(sizeof($subbedUsers)>0){ + foreach($subbedUsers as $subbedUser) { + $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); + } + } + } +} + +private function getStatusIdentifier($statusAbbr, $langStr=null) { + $fullStatusName = ""; + switch($statusAbbr) { + case "D": $fullStatusName = lang_get("req_status_draft",$langStr); break; + case "R": $fullStatusName = lang_get("req_status_review",$langStr); break; + case "W": $fullStatusName = lang_get("req_status_rework",$langStr); break; + case "F": $fullStatusName = lang_get("req_status_finish",$langStr); break; + case "I": $fullStatusName = lang_get("req_status_implemented",$langStr); break; + case "V": $fullStatusName = lang_get("review_status_valid",$langStr); break; + case "N": $fullStatusName = lang_get("req_status_not_testable",$langStr); break; + case "O": $fullStatusName = lang_get("req_status_obsolete",$langStr); break; + } + return $fullStatusName; +} + + +private function notifySubbedUsers($subject, $body, &$args) { + $subbedUsers = $this->reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); + $from = config_get("from_email"); + if(sizeof($subbedUsers)>0){ + foreach($subbedUsers as $subbedUser) { + $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); + } + } +} } \ No newline at end of file diff --git a/lib/requirements/reqEdit.php b/lib/requirements/reqEdit.php index 7c661b40e3..ecf209f2b3 100644 --- a/lib/requirements/reqEdit.php +++ b/lib/requirements/reqEdit.php @@ -35,7 +35,6 @@ $commandMgr = new reqCommands($db); $args = init_args($db); -sendMailOnStatusChange($db,$args); $gui = initialize_gui($db,$args,$commandMgr); $pFn = $args->doAction; $op = null; @@ -307,117 +306,4 @@ function checkRights(&$db,&$user) { return ($user->hasRight($db,'mgt_view_req') && $user->hasRight($db,'mgt_modify_req')); } - -function getStatusIdentifier($statusAbbr, $langStr=null) { - $fullStatusName = ""; - switch($statusAbbr) { - case "D": $fullStatusName = lang_get("req_status_draft",$langStr); break; - case "R": $fullStatusName = lang_get("req_status_review",$langStr); break; - case "W": $fullStatusName = lang_get("req_status_rework",$langStr); break; - case "F": $fullStatusName = lang_get("req_status_finish",$langStr); break; - case "I": $fullStatusName = lang_get("req_status_implemented",$langStr); break; - case "V": $fullStatusName = lang_get("review_status_valid",$langStr); break; - case "N": $fullStatusName = lang_get("req_status_not_testable",$langStr); break; - case "O": $fullStatusName = lang_get("req_status_obsolete",$langStr); break; - } - return $fullStatusName; -} - -function sendMailOnStatusChange(&$db,&$args) -{ - if(strcmp($_POST["req_spec_id"],"") !== 0) { - $fieldMetadataMgr = new cfield_mgr($db); - $usersObj = new tlUser($db); - $reqMgr = new requirement_mgr($db); - $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; - $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); - - $scope = $args->scope; - $reqTitle = $currentReq["title"]; - $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; - $from = config_get("from_email"); - $subbedUsers = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); - $req_doc_id = $currentReq["req_doc_id"]; - - foreach($fieldNames as $fieldName => $fieldData) { - if(strcmp($fieldName,"Status") === 0) { - $reqState = getStatusIdentifier($args->reqStatus); - $oldFieldVal = getStatusIdentifier($currentReq["status"]); - $fieldMetadata["id"] = 0; - $fieldMetadata["name"] = "Status"; - } - else - { - $fieldMetadata = array_pop($fieldMetadataMgr->get_by_name($fieldName)); - $customFieldPOSTName = "custom_field_".$fieldMetadata["type"]."_".$fieldMetadata["id"]; - - $reqState = $_POST[$customFieldPOSTName]; - - $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); - $oldFieldVal = NULL; - //richtiges cfield raussuchen - foreach($oldFieldValArr as $oldFieldValEle) { - if(strcmp($oldFieldValEle["name"], $fieldName) === 0) { - $oldFieldVal = trim($oldFieldValEle["value"]); - break; - } - } - } - - if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { - $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); - if(strcmp($fieldName,"Status") === 0) { - $reqState = getStatusIdentifier($args->reqStatus, "en_GB"); - } - $sqlWhere = "WHERE id = (SELECT assigned_user_id" - ." FROM req_notify_assignments" - ." WHERE test_project_id = {$args->tproject_id}" - ." AND field_id = {$fieldMetadata["id"]}" - ." AND field_value = \"$reqState\")"; - if(strcmp($fieldName,"Status") === 0) { - $reqState = getStatusIdentifier($args->reqStatus); - } - - $assignedUsers = tlUser::getAll($db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); - $subject = lang_get('req_change_notification_subject'); - $subject = str_replace("%reqState", $reqState, $subject); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $body = lang_get('req_change_notification'); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%oldFieldVal", $oldFieldVal, $body); - $body = str_replace("%reqState", $reqState, $body); - $body = str_replace("%scope", $scope, $body); - - foreach($assignedUsers as $assignedUser) { - $retVal = email_send($from,$assignedUser->emailAddress,$subject,$body,'',false,true,null); - foreach($subbedUsers as $key => $subbedUser) { - if(strcmp($subbedUser["login"],$assignedUser->login) == 0) { - unset($subbedUsers[$key]); - break; - } - } - } - } - } - - mlog($args); - //send mail to all subbed users - $subject = lang_get("req_change_subscribtion_subject"); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $body = lang_get("req_change_subscribtion"); - $body = str_replace("%log_msg", $args->log_message, $body); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%scope", $scope, $body); - - if(sizeof($subbedUsers)>0){ - foreach($subbedUsers as $subbedUser) { - $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); - } - } - } -} ?> \ No newline at end of file diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 7695d60b4c..264d3c695f 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -1007,6 +1007,18 @@ $TLS_cat_tools = $TLS_tools; //obsolete +// reqCommands.class.php +$TLS_req_change_notification_subject = "[Requirement State Change] (%reqState) %req_doc_id:%reqTitle"; +$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_change_subscribtion_subject = "[Requirement State Change] %req_doc_id:%reqTitle"; +$TLS_req_change_subscribtion = "

Requirement '%reqTitle' was updated by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_delete_subscribtion_subject = "[Requirement Delete] %req_doc_id:%reqTitle"; +$TLS_req_delete_subscribtion = "

Requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_version_create_subscribtion_subject = "[New Requirement Version Created] %req_doc_id:%reqTitle"; +$TLS_req_version_create_subscribtion = "

A new version of requirement '%reqTitle' was created by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_version_delete_subscribtion_subject = "[Requirement Version Delete] %req_doc_id:%reqTitle"; +$TLS_req_version_delete_subscribtion = "

Requirement version %versionNr of requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; + // gui/templates/reqEdit.tpl $TLS_by = "by"; $TLS_coverage = "Coverage"; @@ -3969,10 +3981,6 @@ $TLS_test_project_names = "Test Project"; $TLS_assign_button_label = "Assign"; $TLS_assign_table_header_fieldvals = "Field Values"; $TLS_assign_table_header_users = "User Names"; -$TLS_req_change_notification_subject = "[Requirement State Change] (%reqState) %req_doc_id:%reqTitle"; -$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; -$TLS_req_change_subscribtion_subject = "[Requirement State Change] %req_doc_id:%reqTitle"; -$TLS_req_change_subscribtion = "

Requirement '%reqTitle' was updated by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_assign_btn_change = "Change Assignment"; $TLS_assign_btn_delete = "Delete Assignment"; From 01093720c75113d2576e0ef438d6ab5765640d05 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Mon, 22 Feb 2016 10:07:15 +0100 Subject: [PATCH 07/11] develp a new user interface to handle requirement subscribtions --- gui/templates/mainPageLeft.tpl | 6 +- gui/templates/manageSubs.tpl | 71 +++++ gui/templates/requirements/reqManageSubs.tpl | 48 ++++ gui/templates/requirements/reqOverview.tpl | 2 +- lib/functions/requirement_mgr.class.php | 10 + lib/requirements/reqCommands.class.php | 5 - lib/requirements/reqManageSubs.php | 258 ++++++++++++++++++ locale/de_DE/strings.txt | 8 + locale/en_GB/strings.txt | 8 +- testlinkEnhancements.git/HEAD | 1 + testlinkEnhancements.git/config | 7 + testlinkEnhancements.git/description | 1 + .../hooks/applypatch-msg.sample | 15 + .../hooks/commit-msg.sample | 24 ++ .../hooks/post-update.sample | 8 + .../hooks/pre-applypatch.sample | 14 + .../hooks/pre-commit.sample | 49 ++++ .../hooks/pre-push.sample | 53 ++++ .../hooks/pre-rebase.sample | 169 ++++++++++++ .../hooks/prepare-commit-msg.sample | 36 +++ testlinkEnhancements.git/hooks/update.sample | 128 +++++++++ testlinkEnhancements.git/info/exclude | 6 + 22 files changed, 919 insertions(+), 8 deletions(-) create mode 100644 gui/templates/manageSubs.tpl create mode 100644 gui/templates/requirements/reqManageSubs.tpl create mode 100644 lib/requirements/reqManageSubs.php create mode 100644 testlinkEnhancements.git/HEAD create mode 100644 testlinkEnhancements.git/config create mode 100644 testlinkEnhancements.git/description create mode 100644 testlinkEnhancements.git/hooks/applypatch-msg.sample create mode 100644 testlinkEnhancements.git/hooks/commit-msg.sample create mode 100644 testlinkEnhancements.git/hooks/post-update.sample create mode 100644 testlinkEnhancements.git/hooks/pre-applypatch.sample create mode 100644 testlinkEnhancements.git/hooks/pre-commit.sample create mode 100644 testlinkEnhancements.git/hooks/pre-push.sample create mode 100644 testlinkEnhancements.git/hooks/pre-rebase.sample create mode 100644 testlinkEnhancements.git/hooks/prepare-commit-msg.sample create mode 100644 testlinkEnhancements.git/hooks/update.sample create mode 100644 testlinkEnhancements.git/info/exclude diff --git a/gui/templates/mainPageLeft.tpl b/gui/templates/mainPageLeft.tpl index def27d2744..ebf9b87670 100644 --- a/gui/templates/mainPageLeft.tpl +++ b/gui/templates/mainPageLeft.tpl @@ -10,7 +10,7 @@ href_assign_user_roles,href_cfields_management,system_config, href_cfields_tproject_assign,href_keywords_manage, title_user_mgmt,href_user_management,href_process_step_role_assignment, - href_roles_management,title_requirements, + href_roles_management,title_requirements,href_manage_req_subs, href_req_spec,href_req_assign,link_report_test_cases_created_per_user, title_test_spec,href_edit_tc,href_browse_tc,href_search_tc, href_search_req, href_search_req_spec,href_inventory, @@ -170,6 +170,10 @@ {$labels.href_cfields_management}
{/if} + {if $gui->grants.reqs_view == "yes"} + {$labels.href_manage_req_subs} +
+ {/if} {if $gui->userRole eq "admin"} {$labels.href_process_step_role_assignment}
diff --git a/gui/templates/manageSubs.tpl b/gui/templates/manageSubs.tpl new file mode 100644 index 0000000000..6cfbd24c28 --- /dev/null +++ b/gui/templates/manageSubs.tpl @@ -0,0 +1,71 @@ +{* + * TestLink Open Source Project - http://testlink.sourceforge.net/ + * $Id: reqOverview.tpl,v 1.8 2010/10/11 07:57:12 mx-julian Exp $ + * + * Purpose: List requirements with (or without) Custom Fields Data in an ExtJS Table. + * See BUGID 3227 for a more detailed description of this feature. + * + * @internal revisions + * + *} + +{lang_get var="labels" + s='testproject_has_no_reqspec, testproject_has_no_requirements, generated_by_TestLink_on, + all_versions_displayed, latest_version_displayed, show_all_versions_btn, + dont_show_all_versions_btn, notes_req_overview, hlp_req_coverage_table'} + +{include file="inc_head.tpl" openHead="yes"} + +{foreach from=$gui->tableSet key=idx item=matrix name="initializer"} + {$tableID="table_$idx"} + {if $smarty.foreach.initializer.first} + {$matrix->renderCommonGlobals()} + {if $matrix instanceof tlExtTable} + {include file="inc_ext_js.tpl" bResetEXTCss=1} + {include file="inc_ext_table.tpl"} + {/if} + {/if} + {$matrix->renderHeadSection($tableID)} +{/foreach} + + + + +

{$gui->pageTitle|escape}

+ +
+ +{if $gui->warning_msg == ''} +

{$labels.generated_by_TestLink_on} {$smarty.now|date_format:$gsmarty_timestamp_format} + {if $gui->elapsedSeconds >0} ({$gui->elapsedSeconds} sec) {/if}

+

+ all_versions} checked="checked" {/if} + onclick="this.form.submit();" /> {$labels.show_all_versions_btn} + +


+ + {foreach from=$gui->tableSet key=idx item=matrix} + {$tableID="table_$idx"} + {$matrix->renderBodySection($tableID)} + {/foreach} + +
+ +

{$labels.notes_req_overview}

+
+

{$labels.hlp_req_coverage_table}

+

+{else} +
+ {$gui->warning_msg} +
+{/if} + +
+ + + + \ No newline at end of file diff --git a/gui/templates/requirements/reqManageSubs.tpl b/gui/templates/requirements/reqManageSubs.tpl new file mode 100644 index 0000000000..9d98bca14b --- /dev/null +++ b/gui/templates/requirements/reqManageSubs.tpl @@ -0,0 +1,48 @@ +{* + * TestLink Open Source Project - http://testlink.sourceforge.net/ + * $Id: reqOverview.tpl,v 1.8 2010/10/11 07:57:12 mx-julian Exp $ + * + * Purpose: List requirements with (or without) Custom Fields Data in an ExtJS Table. + * See BUGID 3227 for a more detailed description of this feature. + * + * @internal revisions + * + *} + +{lang_get var="labels" + s='testproject_has_no_reqspec, testproject_has_no_requirements, + all_versions_displayed, latest_version_displayed, + dont_show_all_versions_btn'} + +{include file="inc_head.tpl" openHead="yes"} + +{foreach from=$gui->tableSet key=idx item=matrix name="initializer"} + {$tableID="table_$idx"} + {if $smarty.foreach.initializer.first} + {$matrix->renderCommonGlobals()} + {if $matrix instanceof tlExtTable} + {include file="inc_ext_js.tpl" bResetEXTCss=1} + {include file="inc_ext_table.tpl"} + {/if} + {/if} + {$matrix->renderHeadSection($tableID)} +{/foreach} + + + +

{$gui->pageTitle|escape}

+ +
+ +{foreach from=$gui->tableSet key=idx item=matrix} +{$tableID="table_$idx"} + {$matrix->renderBodySection($tableID)} +{/foreach} + +
+ +
+ + + + \ No newline at end of file diff --git a/gui/templates/requirements/reqOverview.tpl b/gui/templates/requirements/reqOverview.tpl index 002ed0d258..6cfbd24c28 100644 --- a/gui/templates/requirements/reqOverview.tpl +++ b/gui/templates/requirements/reqOverview.tpl @@ -68,4 +68,4 @@ - + \ No newline at end of file diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index 6ac5fa9e91..4cb8d892f4 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -4240,4 +4240,14 @@ function removeSubscription($tproject_id, $requirement_id, $userId) { $this->db->exec_query($sql); } + + function getAllReqSubbed($tproject_id, $userId) { + $sql = "SELECT req_subscription.fk_req_id AS \"reqID\"" + ." FROM req_subscription" + ." WHERE req_subscription.fk_user_id = $userId" + ." AND req_subscription.tproject_id = $tproject_id;"; + + $results = $this->db->get_recordset($sql); + return $results; + } } // class end \ No newline at end of file diff --git a/lib/requirements/reqCommands.class.php b/lib/requirements/reqCommands.class.php index 3441e9ec60..7a29bafdad 100644 --- a/lib/requirements/reqCommands.class.php +++ b/lib/requirements/reqCommands.class.php @@ -359,7 +359,6 @@ function doDelete(&$argsObj,$request) $this->notifySubbedUsers($subject, $body, $argsObj); $subbedUsers = $this->reqMgr->getSubedUsers($argsObj->tproject_id,$argsObj->requirement_id); foreach($subbedUsers as $subbedUser) { - mlog($subbedUser); $this->reqMgr->removeSubscription($argsObj->tproject_id, $argsObj->requirement_id,$subbedUser["id"]); } @@ -628,13 +627,11 @@ function doDeleteVersion(&$argsObj,$request) $req = array_pop($this->reqMgr->getByDocID($reqversion["req_doc_id"])); $argsObj->requirement_id = $req["id"]; - mlog($argsObj); $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; $req_doc_id = $reqversion["req_doc_id"]; $reqTitle = $reqversion["title"]; $scope = $reqversion["scope"]; $versionNr = $reqversion["version"]; - mlog($currentReq); $subject = lang_get('req_version_delete_subscribtion_subject'); $subject = str_replace("%req_doc_id", $req_doc_id, $subject); @@ -1050,7 +1047,6 @@ private function sendMailOnStatusChange(&$db,&$args) } } - mlog("Status: oldVal = $oldFieldVal | newVal = $reqState"); if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); if(strcmp($fieldName,"Status") === 0) { @@ -1089,7 +1085,6 @@ private function sendMailOnStatusChange(&$db,&$args) } } - mlog($args); //send mail to all subbed users $subject = lang_get("req_change_subscribtion_subject"); $subject = str_replace("%reqTitle", $reqTitle, $subject); diff --git a/lib/requirements/reqManageSubs.php b/lib/requirements/reqManageSubs.php new file mode 100644 index 0000000000..e68b64c800 --- /dev/null +++ b/lib/requirements/reqManageSubs.php @@ -0,0 +1,258 @@ +reqIDs = $tproject_mgr->get_all_requirement_ids($args->tproject_id); + +$smarty = new TLSmarty(); +if(count($gui->reqIDs) > 0) +{ + $chronoStart = microtime(true); + + $pathCache = null; + $imgSet = $smarty->getImages(); + + // get type and status labels + $type_labels = init_labels($cfg->req->type_labels); + $status_labels = init_labels($cfg->req->status_labels); + + $labels2get = array('no' => 'No', 'yes' => 'Yes', 'not_aplicable' => null,'never' => null, + 'req_spec_short' => null,'title' => null, 'version' => null, 'th_coverage' => null, + 'frozen' => null, 'type'=> null,'status' => null,'th_relations' => null, 'requirements' => null, + 'number_of_reqs' => null, 'number_of_versions' => null, 'requirement' => null, 'subscribtion_state' => null, + 'version_revision_tag' => null, 'week_short' => 'calendar_week_short'); + + $labels = init_labels($labels2get); + + $version_option = ($args->all_versions) ? requirement_mgr::ALL_VERSIONS : requirement_mgr::LATEST_VERSION; + if( $version_option == requirement_mgr::LATEST_VERSION ) + { + $reqSet = $req_mgr->getByIDBulkLatestVersionRevision($gui->reqIDs,array('outputFormat' => 'mapOfArray')); + } + else + { + $reqSet = $req_mgr->get_by_id($gui->reqIDs, $version_option,null,array('output_format' => 'mapOfArray')); + // new dBug($reqSet); + } + + // array to gather table data row per row + $rows = array(); + + $subbedReqs = $req_mgr->getAllReqSubbed($args->tproject_id, $_SESSION["userID"]); + foreach($gui->reqIDs as $id) + { + $req = $reqSet[$id]; + + // create the link to display + $title = htmlentities($req[0]['req_doc_id'], ENT_QUOTES, $cfg->charset) . $cfg->glue_char . + htmlentities($req[0]['title'], ENT_QUOTES, $cfg->charset); + + // reqspec-"path" to requirement + if( !isset($pathCache[$req[0]['srs_id']]) ) + { + $path = $req_mgr->tree_mgr->get_path($req[0]['srs_id']); + foreach ($path as $key => $p) + { + $path[$key] = $p['name']; + } + $pathCache[$req[0]['srs_id']] = htmlentities(implode("/", $path), ENT_QUOTES, $cfg->charset); + } + + foreach($req as $version) + { + // get content for each row to display + $result = array(); + + /** + * IMPORTANT: + * the order of following items in this array has to be + * the same as column headers are below!!! + * + * should be: + * 1. path + * 2. title + * 3. created_on + * 4. subscribed + */ + + $result[] = $pathCache[$req[0]['srs_id']]; + + $edit_link = '' . + ' '; + + $result[] = '' . $edit_link . $title; + + // use html comment to sort properly by this columns (extjs) + $result[] = "" . localizeTimeStamp($version['creation_ts'],$cfg->datetime) . + " ({$version['author']})"; + + $isReqSubbed = false; + foreach($subbedReqs as $req) { + if($version["id"] == $req["reqID"]) { + $isReqSubbed = true; + break; + } + } + if($isReqSubbed) { + $result[] = "".lang_get("req_already_subbed"); + } + else { + $result[] = "".lang_get("req_not_subbed_yet"); + } + + $rows[] = $result; + } + } + + // -------------------------------------------------------------------------------------------------- + // Construction of EXT-JS table starts here + if(($gui->row_qty = count($rows)) > 0 ) + { + $version_string = ($args->all_versions) ? $labels['number_of_versions'] : $labels['number_of_reqs']; + $gui->pageTitle .= " - " . $version_string . ": " . $gui->row_qty; + + /** + * get column header titles for the table + * + * IMPORTANT: + * the order of following items in this array has to be + * the same as row content above!!! + * + * should be: + * 1. path + * 2. title + * 3. created_on + * 4. subscribed + */ + $columns = array(); + $columns[] = array('title_key' => 'req_spec_short', 'width' => 150); + $columns[] = array('title_key' => 'title', 'width' => 150); + $columns[] = array('title_key' => 'created_on', 'width' => 100); + $columns[] = array('title_key' => 'subscribtion_state', 'width' => 100); + + // create table object, fill it with columns and row data and give it a title + $matrix = new tlExtTable($columns, $rows, 'tl_table_req_overview'); + $matrix->title = $labels['requirements']; + + // group by Req Spec + $matrix->setGroupByColumnName($labels['req_spec_short']); + + // sort by coverage descending if enabled, otherwise by status + $sort_name = ($cfg->req->expected_coverage_management) ? $labels['th_coverage'] : $labels['status']; + $matrix->setSortByColumnName($sort_name); + $matrix->sortDirection = 'DESC'; + + // define toolbar + $matrix->showToolbar = true; + $matrix->toolbarExpandCollapseGroupsButton = true; + $matrix->toolbarShowAllColumnsButton = true; + $matrix->toolbarRefreshButton = true; + $matrix->showGroupItemsCount = true; + + // show custom field content in multiple lines + $matrix->addCustomBehaviour('text', array('render' => 'columnWrap')); + $gui->tableSet= array($matrix); + } + + $chronoStop = microtime(true); +} + + +$smarty->assign('gui',$gui); +$smarty->display($templateCfg->template_dir . $templateCfg->default_template); + + +/** + * initialize user input + * + * @param resource &$tproject_mgr reference to testproject manager + * @return array $args array with user input information + */ +function init_args(&$tproject_mgr) +{ + $args = new stdClass(); + + $args->tproject_id = intval(isset($_SESSION['testprojectID']) ? $_SESSION['testprojectID'] : 0); + $args->tproject_name = isset($_SESSION['testprojectName']) ? $_SESSION['testprojectName'] : ''; + if($args->tproject_id > 0) + { + $tproject_info = $tproject_mgr->get_by_id($args->tproject_id); + $args->tproject_name = $tproject_info['name']; + $args->tproject_description = $tproject_info['notes']; + } + + return $args; +} + + +/** + * initialize GUI + * + * @param stdClass $argsObj reference to user input + * @return stdClass $gui gui data + */ +function init_gui(&$argsObj) +{ + $gui = new stdClass(); + + $gui->pageTitle = lang_get('caption_req_overview'); + $gui->tproject_name = $argsObj->tproject_name; + $gui->tableSet = null; + + return $gui; +} + + +/** + * + */ +function getCfg() +{ + $cfg = new stdClass(); + $cfg->glue_char = config_get('gui_title_separator_1'); + $cfg->charset = config_get('charset'); + $cfg->req = config_get('req_cfg'); + $cfg->date = config_get('date_format'); + $cfg->datetime = config_get('timestamp_format'); + + // on requirement creation motification timestamp is set to default value "0000-00-00 00:00:00" + $cfg->neverModifiedTS = "0000-00-00 00:00:00"; + + // $cfg->req->expected_coverage_management = FALSE; // FORCED FOR TEST + + return $cfg; +} + + +/* + * rights check function for testlinkInitPage() + */ +function checkRights(&$db, &$user) +{ + return $user->hasRight($db,'mgt_view_req'); +} + diff --git a/locale/de_DE/strings.txt b/locale/de_DE/strings.txt index 265d574a05..cc6b7c67f7 100644 --- a/locale/de_DE/strings.txt +++ b/locale/de_DE/strings.txt @@ -2230,6 +2230,8 @@ $TLS_href_cfields_management = "Benutzerdefinierte Felder verwalten"; $TLS_href_cfields_tproject_assign = "Benutzerdefinierte Felder zuweisen"; $TLS_href_edit_tc = "Testspezifikation"; $TLS_href_inventory = "Inventar"; +$TLS_href_manage_req_subs = "Requirement Abonnements organisieren"; +$TLS_href_process_step_role_assignment = "Prozessschritten Verantwortliche zuweisen"; $TLS_href_inventory_management = 'Inventar Verwaltung'; $TLS_href_keywords_assign = "Testfällen Stichwörter zuweisen"; $TLS_href_keywords_manage = "Stichwörter verwalten"; @@ -3651,5 +3653,11 @@ $TLS_assign_table_header_fieldvals = "Feld Werte"; $TLS_assign_table_header_users = "Benutzernamen"; $TLS_assign_btn_change = "Zuweisungen ändern"; $TLS_assign_btn_delete = "Zuweisungen löschen"; + +// reqManageSubs.php +$TLS_req_already_subbed = "Abo beenden"; +$TLS_req_not_subbed_yet = "Abonnieren"; +$TLS_subscribtion_state = "Status des Abonnements"; + // ----- END ------------------------------------------------------------------ ?> diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 264d3c695f..515ac2c168 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -2419,6 +2419,7 @@ $TLS_build_number_help = 'Number of Builds'; $TLS_href_assign_user_roles = "Assign User Roles"; $TLS_href_browse_tc = "Browse Test Cases"; $TLS_href_cfields_management = "Define Custom Fields"; +$TLS_href_manage_req_subs = "Manage Requirement Subscribtion"; $TLS_href_process_step_role_assignment = "Assign Roles to Process Steps"; $TLS_href_cfields_tproject_assign = "Assign Custom Fields"; $TLS_href_edit_tc = "Test Specification"; @@ -3987,5 +3988,10 @@ $TLS_assign_btn_delete = "Delete Assignment"; $TLS_add_link_to_tlexec = "Add Link in Issue Tracker to Test Case Execution Feature"; $TLS_dl2tl = 'Link to TestLink Execution: '; $TLS_old_style_login = 'Well known login screen'; -$TLS_new_style_login = 'Try the new login screen'; +$TLS_new_style_login = 'Try the new login screen'; + +// reqManageSubs.php +$TLS_req_already_subbed = "End Subscribtion"; +$TLS_req_not_subbed_yet = "Subscribe"; +$TLS_subscribtion_state = "State of Subscribtion"; // ----- END ------------------------------------------------------------------ diff --git a/testlinkEnhancements.git/HEAD b/testlinkEnhancements.git/HEAD new file mode 100644 index 0000000000..cb089cd89a --- /dev/null +++ b/testlinkEnhancements.git/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/testlinkEnhancements.git/config b/testlinkEnhancements.git/config new file mode 100644 index 0000000000..90e16477bd --- /dev/null +++ b/testlinkEnhancements.git/config @@ -0,0 +1,7 @@ +[core] + repositoryformatversion = 0 + filemode = false + bare = true + symlinks = false + ignorecase = true + hideDotFiles = dotGitOnly diff --git a/testlinkEnhancements.git/description b/testlinkEnhancements.git/description new file mode 100644 index 0000000000..498b267a8c --- /dev/null +++ b/testlinkEnhancements.git/description @@ -0,0 +1 @@ +Unnamed repository; edit this file 'description' to name the repository. diff --git a/testlinkEnhancements.git/hooks/applypatch-msg.sample b/testlinkEnhancements.git/hooks/applypatch-msg.sample new file mode 100644 index 0000000000..a5d7b84a67 --- /dev/null +++ b/testlinkEnhancements.git/hooks/applypatch-msg.sample @@ -0,0 +1,15 @@ +#!/bin/sh +# +# An example hook script to check the commit log message taken by +# applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. The hook is +# allowed to edit the commit message file. +# +# To enable this hook, rename this file to "applypatch-msg". + +. git-sh-setup +commitmsg="$(git rev-parse --git-path hooks/commit-msg)" +test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} +: diff --git a/testlinkEnhancements.git/hooks/commit-msg.sample b/testlinkEnhancements.git/hooks/commit-msg.sample new file mode 100644 index 0000000000..b58d1184a9 --- /dev/null +++ b/testlinkEnhancements.git/hooks/commit-msg.sample @@ -0,0 +1,24 @@ +#!/bin/sh +# +# An example hook script to check the commit log message. +# Called by "git commit" with one argument, the name of the file +# that has the commit message. The hook should exit with non-zero +# status after issuing an appropriate message if it wants to stop the +# commit. The hook is allowed to edit the commit message file. +# +# To enable this hook, rename this file to "commit-msg". + +# Uncomment the below to add a Signed-off-by line to the message. +# Doing this in a hook is a bad idea in general, but the prepare-commit-msg +# hook is more suited to it. +# +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" + +# This example catches duplicate Signed-off-by lines. + +test "" = "$(grep '^Signed-off-by: ' "$1" | + sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { + echo >&2 Duplicate Signed-off-by lines. + exit 1 +} diff --git a/testlinkEnhancements.git/hooks/post-update.sample b/testlinkEnhancements.git/hooks/post-update.sample new file mode 100644 index 0000000000..ec17ec1939 --- /dev/null +++ b/testlinkEnhancements.git/hooks/post-update.sample @@ -0,0 +1,8 @@ +#!/bin/sh +# +# An example hook script to prepare a packed repository for use over +# dumb transports. +# +# To enable this hook, rename this file to "post-update". + +exec git update-server-info diff --git a/testlinkEnhancements.git/hooks/pre-applypatch.sample b/testlinkEnhancements.git/hooks/pre-applypatch.sample new file mode 100644 index 0000000000..4142082bcb --- /dev/null +++ b/testlinkEnhancements.git/hooks/pre-applypatch.sample @@ -0,0 +1,14 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed +# by applypatch from an e-mail message. +# +# The hook should exit with non-zero status after issuing an +# appropriate message if it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-applypatch". + +. git-sh-setup +precommit="$(git rev-parse --git-path hooks/pre-commit)" +test -x "$precommit" && exec "$precommit" ${1+"$@"} +: diff --git a/testlinkEnhancements.git/hooks/pre-commit.sample b/testlinkEnhancements.git/hooks/pre-commit.sample new file mode 100644 index 0000000000..68d62d5446 --- /dev/null +++ b/testlinkEnhancements.git/hooks/pre-commit.sample @@ -0,0 +1,49 @@ +#!/bin/sh +# +# An example hook script to verify what is about to be committed. +# Called by "git commit" with no arguments. The hook should +# exit with non-zero status after issuing an appropriate message if +# it wants to stop the commit. +# +# To enable this hook, rename this file to "pre-commit". + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# If you want to allow non-ASCII filenames set this variable to true. +allownonascii=$(git config --bool hooks.allownonascii) + +# Redirect output to stderr. +exec 1>&2 + +# Cross platform projects tend to avoid non-ASCII filenames; prevent +# them from being added to the repository. We exploit the fact that the +# printable range starts at the space character and ends with tilde. +if [ "$allownonascii" != "true" ] && + # Note that the use of brackets around a tr range is ok here, (it's + # even required, for portability to Solaris 10's /usr/bin/tr), since + # the square bracket bytes happen to fall in the designated range. + test $(git diff --cached --name-only --diff-filter=A -z $against | + LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 +then + cat <<\EOF +Error: Attempt to add a non-ASCII file name. + +This can cause problems if you want to work with people on other platforms. + +To be portable it is advisable to rename the file. + +If you know what you are doing you can disable this check using: + + git config hooks.allownonascii true +EOF + exit 1 +fi + +# If there are whitespace errors, print the offending file names and fail. +exec git diff-index --check --cached $against -- diff --git a/testlinkEnhancements.git/hooks/pre-push.sample b/testlinkEnhancements.git/hooks/pre-push.sample new file mode 100644 index 0000000000..6187dbf439 --- /dev/null +++ b/testlinkEnhancements.git/hooks/pre-push.sample @@ -0,0 +1,53 @@ +#!/bin/sh + +# An example hook script to verify what is about to be pushed. Called by "git +# push" after it has checked the remote status, but before anything has been +# pushed. If this script exits with a non-zero status nothing will be pushed. +# +# This hook is called with the following parameters: +# +# $1 -- Name of the remote to which the push is being done +# $2 -- URL to which the push is being done +# +# If pushing without using a named remote those arguments will be equal. +# +# Information about the commits which are being pushed is supplied as lines to +# the standard input in the form: +# +# +# +# This sample shows how to prevent push of commits where the log message starts +# with "WIP" (work in progress). + +remote="$1" +url="$2" + +z40=0000000000000000000000000000000000000000 + +while read local_ref local_sha remote_ref remote_sha +do + if [ "$local_sha" = $z40 ] + then + # Handle delete + : + else + if [ "$remote_sha" = $z40 ] + then + # New branch, examine all commits + range="$local_sha" + else + # Update to existing branch, examine new commits + range="$remote_sha..$local_sha" + fi + + # Check for WIP commit + commit=`git rev-list -n 1 --grep '^WIP' "$range"` + if [ -n "$commit" ] + then + echo >&2 "Found WIP commit in $local_ref, not pushing" + exit 1 + fi + fi +done + +exit 0 diff --git a/testlinkEnhancements.git/hooks/pre-rebase.sample b/testlinkEnhancements.git/hooks/pre-rebase.sample new file mode 100644 index 0000000000..9773ed4cb2 --- /dev/null +++ b/testlinkEnhancements.git/hooks/pre-rebase.sample @@ -0,0 +1,169 @@ +#!/bin/sh +# +# Copyright (c) 2006, 2008 Junio C Hamano +# +# The "pre-rebase" hook is run just before "git rebase" starts doing +# its job, and can prevent the command from running by exiting with +# non-zero status. +# +# The hook is called with the following parameters: +# +# $1 -- the upstream the series was forked from. +# $2 -- the branch being rebased (or empty when rebasing the current branch). +# +# This sample shows how to prevent topic branches that are already +# merged to 'next' branch from getting rebased, because allowing it +# would result in rebasing already published history. + +publish=next +basebranch="$1" +if test "$#" = 2 +then + topic="refs/heads/$2" +else + topic=`git symbolic-ref HEAD` || + exit 0 ;# we do not interrupt rebasing detached HEAD +fi + +case "$topic" in +refs/heads/??/*) + ;; +*) + exit 0 ;# we do not interrupt others. + ;; +esac + +# Now we are dealing with a topic branch being rebased +# on top of master. Is it OK to rebase it? + +# Does the topic really exist? +git show-ref -q "$topic" || { + echo >&2 "No such branch $topic" + exit 1 +} + +# Is topic fully merged to master? +not_in_master=`git rev-list --pretty=oneline ^master "$topic"` +if test -z "$not_in_master" +then + echo >&2 "$topic is fully merged to master; better remove it." + exit 1 ;# we could allow it, but there is no point. +fi + +# Is topic ever merged to next? If so you should not be rebasing it. +only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` +only_next_2=`git rev-list ^master ${publish} | sort` +if test "$only_next_1" = "$only_next_2" +then + not_in_topic=`git rev-list "^$topic" master` + if test -z "$not_in_topic" + then + echo >&2 "$topic is already up-to-date with master" + exit 1 ;# we could allow it, but there is no point. + else + exit 0 + fi +else + not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` + /usr/bin/perl -e ' + my $topic = $ARGV[0]; + my $msg = "* $topic has commits already merged to public branch:\n"; + my (%not_in_next) = map { + /^([0-9a-f]+) /; + ($1 => 1); + } split(/\n/, $ARGV[1]); + for my $elem (map { + /^([0-9a-f]+) (.*)$/; + [$1 => $2]; + } split(/\n/, $ARGV[2])) { + if (!exists $not_in_next{$elem->[0]}) { + if ($msg) { + print STDERR $msg; + undef $msg; + } + print STDERR " $elem->[1]\n"; + } + } + ' "$topic" "$not_in_next" "$not_in_master" + exit 1 +fi + +exit 0 + +################################################################ + +This sample hook safeguards topic branches that have been +published from being rewound. + +The workflow assumed here is: + + * Once a topic branch forks from "master", "master" is never + merged into it again (either directly or indirectly). + + * Once a topic branch is fully cooked and merged into "master", + it is deleted. If you need to build on top of it to correct + earlier mistakes, a new topic branch is created by forking at + the tip of the "master". This is not strictly necessary, but + it makes it easier to keep your history simple. + + * Whenever you need to test or publish your changes to topic + branches, merge them into "next" branch. + +The script, being an example, hardcodes the publish branch name +to be "next", but it is trivial to make it configurable via +$GIT_DIR/config mechanism. + +With this workflow, you would want to know: + +(1) ... if a topic branch has ever been merged to "next". Young + topic branches can have stupid mistakes you would rather + clean up before publishing, and things that have not been + merged into other branches can be easily rebased without + affecting other people. But once it is published, you would + not want to rewind it. + +(2) ... if a topic branch has been fully merged to "master". + Then you can delete it. More importantly, you should not + build on top of it -- other people may already want to + change things related to the topic as patches against your + "master", so if you need further changes, it is better to + fork the topic (perhaps with the same name) afresh from the + tip of "master". + +Let's look at this example: + + o---o---o---o---o---o---o---o---o---o "next" + / / / / + / a---a---b A / / + / / / / + / / c---c---c---c B / + / / / \ / + / / / b---b C \ / + / / / / \ / + ---o---o---o---o---o---o---o---o---o---o---o "master" + + +A, B and C are topic branches. + + * A has one fix since it was merged up to "next". + + * B has finished. It has been fully merged up to "master" and "next", + and is ready to be deleted. + + * C has not merged to "next" at all. + +We would want to allow C to be rebased, refuse A, and encourage +B to be deleted. + +To compute (1): + + git rev-list ^master ^topic next + git rev-list ^master next + + if these match, topic has not merged in next at all. + +To compute (2): + + git rev-list master..topic + + if this is empty, it is fully merged to "master". diff --git a/testlinkEnhancements.git/hooks/prepare-commit-msg.sample b/testlinkEnhancements.git/hooks/prepare-commit-msg.sample new file mode 100644 index 0000000000..f093a02ec4 --- /dev/null +++ b/testlinkEnhancements.git/hooks/prepare-commit-msg.sample @@ -0,0 +1,36 @@ +#!/bin/sh +# +# An example hook script to prepare the commit log message. +# Called by "git commit" with the name of the file that has the +# commit message, followed by the description of the commit +# message's source. The hook's purpose is to edit the commit +# message file. If the hook fails with a non-zero status, +# the commit is aborted. +# +# To enable this hook, rename this file to "prepare-commit-msg". + +# This hook includes three examples. The first comments out the +# "Conflicts:" part of a merge commit. +# +# The second includes the output of "git diff --name-status -r" +# into the message, just before the "git status" output. It is +# commented because it doesn't cope with --amend or with squashed +# commits. +# +# The third example adds a Signed-off-by line to the message, that can +# still be edited. This is rarely a good idea. + +case "$2,$3" in + merge,) + /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; + +# ,|template,) +# /usr/bin/perl -i.bak -pe ' +# print "\n" . `git diff --cached --name-status -r` +# if /^#/ && $first++ == 0' "$1" ;; + + *) ;; +esac + +# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') +# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/testlinkEnhancements.git/hooks/update.sample b/testlinkEnhancements.git/hooks/update.sample new file mode 100644 index 0000000000..d84758373d --- /dev/null +++ b/testlinkEnhancements.git/hooks/update.sample @@ -0,0 +1,128 @@ +#!/bin/sh +# +# An example hook script to blocks unannotated tags from entering. +# Called by "git receive-pack" with arguments: refname sha1-old sha1-new +# +# To enable this hook, rename this file to "update". +# +# Config +# ------ +# hooks.allowunannotated +# This boolean sets whether unannotated tags will be allowed into the +# repository. By default they won't be. +# hooks.allowdeletetag +# This boolean sets whether deleting tags will be allowed in the +# repository. By default they won't be. +# hooks.allowmodifytag +# This boolean sets whether a tag may be modified after creation. By default +# it won't be. +# hooks.allowdeletebranch +# This boolean sets whether deleting branches will be allowed in the +# repository. By default they won't be. +# hooks.denycreatebranch +# This boolean sets whether remotely creating branches will be denied +# in the repository. By default this is allowed. +# + +# --- Command line +refname="$1" +oldrev="$2" +newrev="$3" + +# --- Safety check +if [ -z "$GIT_DIR" ]; then + echo "Don't run this script from the command line." >&2 + echo " (if you want, you could supply GIT_DIR then run" >&2 + echo " $0 )" >&2 + exit 1 +fi + +if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then + echo "usage: $0 " >&2 + exit 1 +fi + +# --- Config +allowunannotated=$(git config --bool hooks.allowunannotated) +allowdeletebranch=$(git config --bool hooks.allowdeletebranch) +denycreatebranch=$(git config --bool hooks.denycreatebranch) +allowdeletetag=$(git config --bool hooks.allowdeletetag) +allowmodifytag=$(git config --bool hooks.allowmodifytag) + +# check for no description +projectdesc=$(sed -e '1q' "$GIT_DIR/description") +case "$projectdesc" in +"Unnamed repository"* | "") + echo "*** Project description file hasn't been set" >&2 + exit 1 + ;; +esac + +# --- Check types +# if $newrev is 0000...0000, it's a commit to delete a ref. +zero="0000000000000000000000000000000000000000" +if [ "$newrev" = "$zero" ]; then + newrev_type=delete +else + newrev_type=$(git cat-file -t $newrev) +fi + +case "$refname","$newrev_type" in + refs/tags/*,commit) + # un-annotated tag + short_refname=${refname##refs/tags/} + if [ "$allowunannotated" != "true" ]; then + echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 + echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 + exit 1 + fi + ;; + refs/tags/*,delete) + # delete tag + if [ "$allowdeletetag" != "true" ]; then + echo "*** Deleting a tag is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/tags/*,tag) + # annotated tag + if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 + then + echo "*** Tag '$refname' already exists." >&2 + echo "*** Modifying a tag is not allowed in this repository." >&2 + exit 1 + fi + ;; + refs/heads/*,commit) + # branch + if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then + echo "*** Creating a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/heads/*,delete) + # delete branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + refs/remotes/*,commit) + # tracking branch + ;; + refs/remotes/*,delete) + # delete tracking branch + if [ "$allowdeletebranch" != "true" ]; then + echo "*** Deleting a tracking branch is not allowed in this repository" >&2 + exit 1 + fi + ;; + *) + # Anything else (is there anything else?) + echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 + exit 1 + ;; +esac + +# --- Finished +exit 0 diff --git a/testlinkEnhancements.git/info/exclude b/testlinkEnhancements.git/info/exclude new file mode 100644 index 0000000000..a5196d1be8 --- /dev/null +++ b/testlinkEnhancements.git/info/exclude @@ -0,0 +1,6 @@ +# git ls-files --others --exclude-from=.git/info/exclude +# Lines that start with '#' are comments. +# For a project mostly in C, the following would be a good set of +# exclude patterns (uncomment them if you want to use them): +# *.[oa] +# *~ From 8f2e21f46227901c379de796df0be95fdd712e9e Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Mon, 22 Feb 2016 14:43:32 +0100 Subject: [PATCH 08/11] removing import of custom_config.php --- lib/requirements/reqView.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/requirements/reqView.php b/lib/requirements/reqView.php index 8c689a8e7b..62b58c4342 100644 --- a/lib/requirements/reqView.php +++ b/lib/requirements/reqView.php @@ -13,7 +13,6 @@ * */ require_once('../../config.inc.php'); -require_once('../../custom_config.inc.php'); require_once('common.php'); require_once('attachments.inc.php'); require_once('requirements.inc.php'); From 59055d986cce0452efc3457e03f69703a4399292 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Wed, 24 Feb 2016 13:17:55 +0100 Subject: [PATCH 09/11] code refactroing after initial merge request --- config.inc.php | 4 +- gui/templates/mainPageLeft.tpl | 16 +- gui/templates/manageSubs.tpl | 71 - .../notificationAssignmentConfig.tpl | 88 +- .../notificationAssignmentCreate.tpl | 82 +- gui/templates/requirements/reqManageSubs.tpl | 5 +- .../requirements/reqViewVersionsViewer.tpl | 14 +- install/sql/mysql/testlink_create_tables.sql | 10 +- lib/cfields/cfieldsEdit.php | 340 +- lib/functions/object.class.php | 5 +- lib/functions/requirement_mgr.class.php | 505 +-- lib/general/mainPage.php | 42 +- .../notificationAssignmentConfig.php | 30 +- .../notificationAssignmentCreate.php | 18 +- lib/requirements/reqCommands.class.php | 361 +-- lib/requirements/reqManageSubs.php | 42 +- lib/requirements/reqView.php | 36 +- locale/de_DE/strings.txt | 16 +- locale/en_GB/strings.txt | 16 +- logsaudits.log | 96 + logsconfig_check.txt | 2 + logsuserlog0.log | 2759 +++++++++++++++++ logsuserlog1.log | 2326 ++++++++++++++ logsuserlog2.log | 587 ++++ testlinkEnhancements.git/HEAD | 1 - testlinkEnhancements.git/config | 7 - testlinkEnhancements.git/description | 1 - .../hooks/applypatch-msg.sample | 15 - .../hooks/commit-msg.sample | 24 - .../hooks/post-update.sample | 8 - .../hooks/pre-applypatch.sample | 14 - .../hooks/pre-commit.sample | 49 - .../hooks/pre-push.sample | 53 - .../hooks/pre-rebase.sample | 169 - .../hooks/prepare-commit-msg.sample | 36 - testlinkEnhancements.git/hooks/update.sample | 128 - testlinkEnhancements.git/info/exclude | 6 - 37 files changed, 6604 insertions(+), 1378 deletions(-) delete mode 100644 gui/templates/manageSubs.tpl create mode 100644 logsaudits.log create mode 100644 logsconfig_check.txt create mode 100644 logsuserlog0.log create mode 100644 logsuserlog1.log create mode 100644 logsuserlog2.log delete mode 100644 testlinkEnhancements.git/HEAD delete mode 100644 testlinkEnhancements.git/config delete mode 100644 testlinkEnhancements.git/description delete mode 100644 testlinkEnhancements.git/hooks/applypatch-msg.sample delete mode 100644 testlinkEnhancements.git/hooks/commit-msg.sample delete mode 100644 testlinkEnhancements.git/hooks/post-update.sample delete mode 100644 testlinkEnhancements.git/hooks/pre-applypatch.sample delete mode 100644 testlinkEnhancements.git/hooks/pre-commit.sample delete mode 100644 testlinkEnhancements.git/hooks/pre-push.sample delete mode 100644 testlinkEnhancements.git/hooks/pre-rebase.sample delete mode 100644 testlinkEnhancements.git/hooks/prepare-commit-msg.sample delete mode 100644 testlinkEnhancements.git/hooks/update.sample delete mode 100644 testlinkEnhancements.git/info/exclude diff --git a/config.inc.php b/config.inc.php index 6ceae8e8ea..f4d492953a 100644 --- a/config.inc.php +++ b/config.inc.php @@ -185,7 +185,7 @@ * for security reasons (see http://itsecuritysolutions.org/2012-08-13-TestLink-1.9.3-multiple-vulnerabilities/) * put it out of reach via web or configure access denied. */ -$tlCfg->log_path = 'C:\xampp\htdocs\TestlinkNew\logs'; /* unix example */ +$tlCfg->log_path = 'C:\xampp\htdocs\testlinkPrefixTest\logs'; /* unix example */ /** @@ -1111,7 +1111,7 @@ * Put it out of reach via web or configure access denied. * **/ -$g_repositoryPath = 'C:\xampp\htdocs\TestlinkNew\upload_area'; /* unix example */ +$g_repositoryPath = 'C:\xampp\htdocs\testlinkPrefixTest\upload_area'; /* unix example */ /** * compression used within the repository diff --git a/gui/templates/mainPageLeft.tpl b/gui/templates/mainPageLeft.tpl index ebf9b87670..61e0d3919f 100644 --- a/gui/templates/mainPageLeft.tpl +++ b/gui/templates/mainPageLeft.tpl @@ -168,14 +168,14 @@
{if $gui->grants.cfield_management == "yes"} {$labels.href_cfields_management} -
- {/if} - {if $gui->grants.reqs_view == "yes"} - {$labels.href_manage_req_subs} -
- {/if} - {if $gui->userRole eq "admin"} - {$labels.href_process_step_role_assignment} +
+ {/if} + {if $gui->grants.reqs_view == "yes"} + {$labels.href_manage_req_subs} +
+ {/if} + {if $gui->userRole eq "admin"} + {$labels.href_process_step_role_assignment}
{/if} diff --git a/gui/templates/manageSubs.tpl b/gui/templates/manageSubs.tpl deleted file mode 100644 index 6cfbd24c28..0000000000 --- a/gui/templates/manageSubs.tpl +++ /dev/null @@ -1,71 +0,0 @@ -{* - * TestLink Open Source Project - http://testlink.sourceforge.net/ - * $Id: reqOverview.tpl,v 1.8 2010/10/11 07:57:12 mx-julian Exp $ - * - * Purpose: List requirements with (or without) Custom Fields Data in an ExtJS Table. - * See BUGID 3227 for a more detailed description of this feature. - * - * @internal revisions - * - *} - -{lang_get var="labels" - s='testproject_has_no_reqspec, testproject_has_no_requirements, generated_by_TestLink_on, - all_versions_displayed, latest_version_displayed, show_all_versions_btn, - dont_show_all_versions_btn, notes_req_overview, hlp_req_coverage_table'} - -{include file="inc_head.tpl" openHead="yes"} - -{foreach from=$gui->tableSet key=idx item=matrix name="initializer"} - {$tableID="table_$idx"} - {if $smarty.foreach.initializer.first} - {$matrix->renderCommonGlobals()} - {if $matrix instanceof tlExtTable} - {include file="inc_ext_js.tpl" bResetEXTCss=1} - {include file="inc_ext_table.tpl"} - {/if} - {/if} - {$matrix->renderHeadSection($tableID)} -{/foreach} - - - - -

{$gui->pageTitle|escape}

- -
- -{if $gui->warning_msg == ''} -

{$labels.generated_by_TestLink_on} {$smarty.now|date_format:$gsmarty_timestamp_format} - {if $gui->elapsedSeconds >0} ({$gui->elapsedSeconds} sec) {/if}

-

- all_versions} checked="checked" {/if} - onclick="this.form.submit();" /> {$labels.show_all_versions_btn} - -


- - {foreach from=$gui->tableSet key=idx item=matrix} - {$tableID="table_$idx"} - {$matrix->renderBodySection($tableID)} - {/foreach} - -
- -

{$labels.notes_req_overview}

-
-

{$labels.hlp_req_coverage_table}

-

-{else} -
- {$gui->warning_msg} -
-{/if} - -
- - - - \ No newline at end of file diff --git a/gui/templates/notificationAssignmentConfig.tpl b/gui/templates/notificationAssignmentConfig.tpl index 2b6f601f44..04f03cc9f5 100644 --- a/gui/templates/notificationAssignmentConfig.tpl +++ b/gui/templates/notificationAssignmentConfig.tpl @@ -5,49 +5,49 @@ - {include file="inc_head.tpl" openHead="yes" jsValidate="yes" editorType=$gui->editorType} -
-
- - - - -
-
- {if isset($gui->assignments)} -
- {foreach key=fieldName item=fieldVal from=$gui->assignments} -
-
-

{$fieldName}

- - - {for $i=0 to sizeof($fieldVal["field_value"])} - - - - - {/for} - - - - -
-
- {/foreach} -
- {/if} + {include file="inc_head.tpl" openHead="yes" jsValidate="yes" editorType=$gui->editorType} +
+
+ + + + +
+
+ {if isset($gui->assignments)} +
+ {foreach key=fieldName item=fieldVal from=$gui->assignments} +
+
+

{$fieldName}

+ + + {for $i=0 to sizeof($fieldVal["field_value"])} + + + + + {/for} + + + + +
+
+ {/foreach} +
+ {/if} \ No newline at end of file diff --git a/gui/templates/notificationAssignmentCreate.tpl b/gui/templates/notificationAssignmentCreate.tpl index d30d5f31c4..08d966b591 100644 --- a/gui/templates/notificationAssignmentCreate.tpl +++ b/gui/templates/notificationAssignmentCreate.tpl @@ -3,45 +3,45 @@ - - - - -
-
- - - - {foreach key=fieldValNr item=fieldVal from=$gui->fieldVals} - - - - - {/foreach} - - - -
-
- + + + + +
+
+ + + + {foreach key=fieldValNr item=fieldVal from=$gui->fieldVals} + + + + + {/foreach} + + + +
+
+ \ No newline at end of file diff --git a/gui/templates/requirements/reqManageSubs.tpl b/gui/templates/requirements/reqManageSubs.tpl index 9d98bca14b..455c1f07a7 100644 --- a/gui/templates/requirements/reqManageSubs.tpl +++ b/gui/templates/requirements/reqManageSubs.tpl @@ -1,9 +1,8 @@ {* * TestLink Open Source Project - http://testlink.sourceforge.net/ - * $Id: reqOverview.tpl,v 1.8 2010/10/11 07:57:12 mx-julian Exp $ + * $Id: reqmanagesubs.tpl,v 1.9 2016/22/02 * - * Purpose: List requirements with (or without) Custom Fields Data in an ExtJS Table. - * See BUGID 3227 for a more detailed description of this feature. + * Purpose: List requirements in an ExtJS Table, with the ability to subscribe or unsubscribe requirements. * * @internal revisions * diff --git a/gui/templates/requirements/reqViewVersionsViewer.tpl b/gui/templates/requirements/reqViewVersionsViewer.tpl index 4e8f63830e..8b8aee769a 100644 --- a/gui/templates/requirements/reqViewVersionsViewer.tpl +++ b/gui/templates/requirements/reqViewVersionsViewer.tpl @@ -122,14 +122,14 @@ viewer for requirement {* Option to print single requirement *}
- - {if $gui->isSubed == 1} - - {elseif $gui->isSubed == 0} - - {/if} + {if $gui->isSubed == 1} + + {elseif $gui->isSubed == 0} + + {/if}


{* class="groupBtn" *} diff --git a/install/sql/mysql/testlink_create_tables.sql b/install/sql/mysql/testlink_create_tables.sql index e7a696f3ac..9aa91461d6 100644 --- a/install/sql/mysql/testlink_create_tables.sql +++ b/install/sql/mysql/testlink_create_tables.sql @@ -695,7 +695,7 @@ CREATE TABLE /*prefix*/testcase_relations ( PRIMARY KEY (`id`) ) DEFAULT CHARSET=utf8; -CREATE TABLE `req_notify_assignments` ( +CREATE TABLE /*prefix*/req_notify_assignments ( `id` int(11) NOT NULL AUTO_INCREMENT, `test_project_id` int(11) NOT NULL, `field_id` int(11) NOT NULL, @@ -705,9 +705,9 @@ CREATE TABLE `req_notify_assignments` ( UNIQUE KEY `id_UNIQUE` (`id`) ) AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; -CREATE TABLE `req_subscription` ( - `fk_req_id` int(11) NOT NULL, - `fk_user_id` int(11) NOT NULL, +CREATE TABLE /*prefix*/req_subscription ( + `req_id` int(11) NOT NULL, + `user_id` int(11) NOT NULL, `tproject_id` int(11) NOT NULL, - PRIMARY KEY (`fk_req_id`,`fk_user_id`) + PRIMARY KEY (`req_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/lib/cfields/cfieldsEdit.php b/lib/cfields/cfieldsEdit.php index bb63622724..7871b3d538 100644 --- a/lib/cfields/cfieldsEdit.php +++ b/lib/cfields/cfieldsEdit.php @@ -31,76 +31,76 @@ // Changed default values $emptyCF = array('id' => $args->cfield_id, - 'name' => '','label' => '', - 'type' => 0,'possible_values' => '', - 'show_on_design' => 1,'enable_on_design' => 1, - 'show_on_execution' => 0,'enable_on_execution' => 0, - 'show_on_testplan_design' => 0,'enable_on_testplan_design' => 0, - 'node_type_id' => $cfieldCfg->allowed_nodes['testcase']); + 'name' => '','label' => '', + 'type' => 0,'possible_values' => '', + 'show_on_design' => 1,'enable_on_design' => 1, + 'show_on_execution' => 0,'enable_on_execution' => 0, + 'show_on_testplan_design' => 0,'enable_on_testplan_design' => 0, + 'node_type_id' => $cfieldCfg->allowed_nodes['testcase']); $gui->cfield = $emptyCF; switch ($args->do_action) { - case 'create': - $templateCfg->template=$templateCfg->default_template; - $user_feedback =''; - $operation_descr = ''; - break; - - case 'edit': - $op = edit($args,$cfield_mgr); - $gui->cfield = $op->cf; - $gui->cfield_is_used = $op->cf_is_used; - $gui->cfield_is_linked = $op->cf_is_linked; - $gui->linked_tprojects = $op->linked_tprojects; - $user_feedback = $op->user_feedback; - $operation_descr=$op->operation_descr; - break; - - case 'do_add': + case 'create': + $templateCfg->template=$templateCfg->default_template; + $user_feedback =''; + $operation_descr = ''; + break; + + case 'edit': + $op = edit($args,$cfield_mgr); + $gui->cfield = $op->cf; + $gui->cfield_is_used = $op->cf_is_used; + $gui->cfield_is_linked = $op->cf_is_linked; + $gui->linked_tprojects = $op->linked_tprojects; + $user_feedback = $op->user_feedback; + $operation_descr=$op->operation_descr; + break; + + case 'do_add': case 'do_add_and_assign': - $op = doCreate($_REQUEST,$cfield_mgr,$args); - $gui->cfield = $op->cf; - $user_feedback = $op->user_feedback; - $templateCfg->template = $op->template; - $operation_descr = ''; - break; - - case 'do_update': - $op = doUpdate($_REQUEST,$args,$cfield_mgr); - $gui->cfield = $op->cf; - $user_feedback = $op->user_feedback; - $operation_descr=$op->operation_descr; - $templateCfg->template = $op->template; - break; - - case 'do_delete': - $op = doDelete($args,$cfield_mgr); - $reqMgr = new requirement_mgr($db); - $reqMgr->deleteNotificationFieldAssignmentsByFieldId($args->tproject_id,$args->cfield_id); - $user_feedback = $op->user_feedback; - $operation_descr=$op->operation_descr; - $templateCfg->template = $op->template; - $do_control_combo_display = 0; - break; + $op = doCreate($_REQUEST,$cfield_mgr,$args); + $gui->cfield = $op->cf; + $user_feedback = $op->user_feedback; + $templateCfg->template = $op->template; + $operation_descr = ''; + break; + + case 'do_update': + $op = doUpdate($_REQUEST,$args,$cfield_mgr); + $gui->cfield = $op->cf; + $user_feedback = $op->user_feedback; + $operation_descr=$op->operation_descr; + $templateCfg->template = $op->template; + break; + + case 'do_delete': + $op = doDelete($args,$cfield_mgr); + $reqMgr = new requirement_mgr($db); + $reqMgr->deleteNotificationFieldAssignmentsByFieldId($args->tproject_id,$args->cfield_id); + $user_feedback = $op->user_feedback; + $operation_descr=$op->operation_descr; + $templateCfg->template = $op->template; + $do_control_combo_display = 0; + break; } if( $do_control_combo_display ) { $keys2loop = $cfield_mgr->get_application_areas(); - foreach( $keys2loop as $ui_mode) - { + foreach( $keys2loop as $ui_mode) + { if($cfieldCfg->enable_on_cfg[$ui_mode][$gui->cfield['node_type_id']]) - { - $cfieldCfg->cf_enable_on[$ui_mode]['value']=1; + { + $cfieldCfg->cf_enable_on[$ui_mode]['value']=1; } - if(!$cfieldCfg->show_on_cfg[$ui_mode][$gui->cfield['node_type_id']]) - { - $cfieldCfg->cf_show_on[$ui_mode]['disabled']=' disabled="disabled" '; - $cfieldCfg->cf_show_on[$ui_mode]['style']=' style="display:none;" '; - } - } + if(!$cfieldCfg->show_on_cfg[$ui_mode][$gui->cfield['node_type_id']]) + { + $cfieldCfg->cf_show_on[$ui_mode]['disabled']=' disabled="disabled" '; + $cfieldCfg->cf_show_on[$ui_mode]['style']=' style="display:none;" '; + } + } } $gui->show_possible_values = 0; @@ -163,26 +163,26 @@ function request2cf($hash) 'enable_on_testplan_design' => 0, 'possible_values' => ' ' ); - $cf_prefix = 'cf_'; - $len_cfp = tlStringLen($cf_prefix); - $start_pos = $len_cfp; - $cf = array(); - foreach($hash as $key => $value) - { - if(strncmp($key,$cf_prefix,$len_cfp) == 0) - { - $dummy = substr($key,$start_pos); - $cf[$dummy] = $value; - } - } - - foreach($missing_keys as $key => $value) - { - if(!isset($cf[$key])) - { - $cf[$key] = $value; - } - } + $cf_prefix = 'cf_'; + $len_cfp = tlStringLen($cf_prefix); + $start_pos = $len_cfp; + $cf = array(); + foreach($hash as $key => $value) + { + if(strncmp($key,$cf_prefix,$len_cfp) == 0) + { + $dummy = substr($key,$start_pos); + $cf[$dummy] = $value; + } + } + + foreach($missing_keys as $key => $value) + { + if(!isset($cf[$key])) + { + $cf[$key] = $value; + } + } // After logic refactoring // if ENABLE_ON_[area] == 1 @@ -261,17 +261,17 @@ function edit(&$argsObj,&$cfieldMgr) $op->operation_descr = ''; $op->linked_tprojects = null; - $cfinfo = $cfieldMgr->get_by_id($argsObj->cfield_id); - - if ($cfinfo) - { - $op->cf = $cfinfo[$argsObj->cfield_id]; - $op->cf_is_used = $cfieldMgr->is_used($argsObj->cfield_id); - - $op->operation_descr = lang_get('title_cfield_edit') . TITLE_SEP_TYPE3 . $op->cf['name']; - $op->linked_tprojects = $cfieldMgr->get_linked_testprojects($argsObj->cfield_id); - $op->cf_is_linked = !is_null($op->linked_tprojects) && count($op->linked_tprojects) > 0; - } + $cfinfo = $cfieldMgr->get_by_id($argsObj->cfield_id); + + if ($cfinfo) + { + $op->cf = $cfinfo[$argsObj->cfield_id]; + $op->cf_is_used = $cfieldMgr->is_used($argsObj->cfield_id); + + $op->operation_descr = lang_get('title_cfield_edit') . TITLE_SEP_TYPE3 . $op->cf['name']; + $op->linked_tprojects = $cfieldMgr->get_linked_testprojects($argsObj->cfield_id); + $op->cf_is_linked = !is_null($op->linked_tprojects) && count($op->linked_tprojects) > 0; + } return $op; } @@ -289,28 +289,28 @@ function doCreate(&$hash_request,&$cfieldMgr,&$argsObj) $op = new stdClass(); $op->template = "cfieldsEdit.tpl"; $op->user_feedback=''; - $op->cf = request2cf($hash_request); - - $keys2trim=array('name','label','possible_values'); - foreach($keys2trim as $key) - { - $op->cf[$key]=trim($op->cf[$key]); - } + $op->cf = request2cf($hash_request); + + $keys2trim=array('name','label','possible_values'); + foreach($keys2trim as $key) + { + $op->cf[$key]=trim($op->cf[$key]); + } // Check if name exists $dupcf = $cfieldMgr->get_by_name($op->cf['name']); if(is_null($dupcf)) { - $ret = $cfieldMgr->create($op->cf); - if(!$ret['status_ok']) - { - $op->user_feedback = lang_get("error_creating_cf"); - } - else - { - $op->template = null; - logAuditEvent(TLS("audit_cfield_created",$op->cf['name']),"CREATE",$ret['id'],"custom_fields"); - + $ret = $cfieldMgr->create($op->cf); + if(!$ret['status_ok']) + { + $op->user_feedback = lang_get("error_creating_cf"); + } + else + { + $op->template = null; + logAuditEvent(TLS("audit_cfield_created",$op->cf['name']),"CREATE",$ret['id'],"custom_fields"); + if($hash_request['do_action'] == 'do_add_and_assign') { $cfieldMgr->link_to_testproject($argsObj->tproject_id,array($ret['id'])); @@ -318,8 +318,8 @@ function doCreate(&$hash_request,&$cfieldMgr,&$argsObj) } } else - { - $op->user_feedback = lang_get("cf_name_exists"); + { + $op->user_feedback = lang_get("cf_name_exists"); } return $op; @@ -340,66 +340,66 @@ function doUpdate(&$hash_request,&$argsObj,&$cfieldMgr) $op = new stdClass(); $op->template = "cfieldsEdit.tpl"; $op->user_feedback=''; - $op->cf = request2cf($hash_request); - $op->cf['id'] = $argsObj->cfield_id; - + $op->cf = request2cf($hash_request); + $op->cf['id'] = $argsObj->cfield_id; + $oldObjData=$cfieldMgr->get_by_id($argsObj->cfield_id); $oldname=$oldObjData[$argsObj->cfield_id]['name']; $op->operation_descr=lang_get('title_cfield_edit') . TITLE_SEP_TYPE3 . $oldname; - - $keys2trim=array('name','label','possible_values'); - foreach($keys2trim as $key) - { - $op->cf[$key]=trim($op->cf[$key]); - } - - // Check if name exists - $is_unique = $cfieldMgr->name_is_unique($op->cf['id'],$op->cf['name']); - if($is_unique) - { - $ret = $cfieldMgr->update($op->cf); - if ($ret) - { - $op->template = null; - logAuditEvent(TLS("audit_cfield_saved",$op->cf['name']),"SAVE",$op->cf['id'],"custom_fields"); - } - } - else + + $keys2trim=array('name','label','possible_values'); + foreach($keys2trim as $key) + { + $op->cf[$key]=trim($op->cf[$key]); + } + + // Check if name exists + $is_unique = $cfieldMgr->name_is_unique($op->cf['id'],$op->cf['name']); + if($is_unique) + { + $ret = $cfieldMgr->update($op->cf); + if ($ret) + { + $op->template = null; + logAuditEvent(TLS("audit_cfield_saved",$op->cf['name']),"SAVE",$op->cf['id'],"custom_fields"); + } + } + else { - $op->user_feedback = lang_get("cf_name_exists"); - } - return $op; + $op->user_feedback = lang_get("cf_name_exists"); + } + return $op; } - - - -/* - function: doDelete - - args: - - returns: - -*/ -function doDelete(&$argsObj,&$cfieldMgr) -{ + + + + /* + *function: doDelete + * + *args: + * + *returns: + * + */ + function doDelete(&$argsObj,&$cfieldMgr) { + $op = new stdClass(); - $op->user_feedback=''; - $op->cf = null; - $op->template = null; - $op->operation_descr = ''; + $op->user_feedback=''; + $op->cf = null; + $op->template = null; + $op->operation_descr = ''; - $cf = $cfieldMgr->get_by_id($argsObj->cfield_id); - if ($cf) - { - $cf = $cf[$argsObj->cfield_id]; - if ($cfieldMgr->delete($argsObj->cfield_id)) - { - logAuditEvent(TLS("audit_cfield_deleted",$cf['name']),"DELETE",$argsObj->cfield_id,"custom_fields"); - } - } - return $op; -} + $cf = $cfieldMgr->get_by_id($argsObj->cfield_id); + if ($cf) + { + $cf = $cf[$argsObj->cfield_id]; + if ($cfieldMgr->delete($argsObj->cfield_id)) + { + logAuditEvent(TLS("audit_cfield_deleted",$cf['name']),"DELETE",$argsObj->cfield_id,"custom_fields"); + } + } + return $op; + } /* @@ -454,19 +454,19 @@ function renderGui(&$smartyObj,&$argsObj,&$guiObj,&$cfieldMgr,$templateCfg) $doRender=false; switch($argsObj->do_action) { - case "do_add": - case "do_delete": - case "do_update": + case "do_add": + case "do_delete": + case "do_update": case "do_add_and_assign": $doRender=true; - $tpl = is_null($templateCfg->template) ? 'cfieldsView.tpl' : $templateCfg->template; - break; - - case "edit": - case "create": + $tpl = is_null($templateCfg->template) ? 'cfieldsView.tpl' : $templateCfg->template; + break; + + case "edit": + case "create": $doRender=true; - $tpl = is_null($templateCfg->template) ? $templateCfg->default_template : $templateCfg->template; - break; + $tpl = is_null($templateCfg->template) ? $templateCfg->default_template : $templateCfg->template; + break; } if($doRender) diff --git a/lib/functions/object.class.php b/lib/functions/object.class.php index dba521a902..509fd6f77f 100644 --- a/lib/functions/object.class.php +++ b/lib/functions/object.class.php @@ -278,7 +278,7 @@ static public function getDBTables($tableNames = null) 'requirements' => DB_TABLE_PREFIX . 'requirements', 'req_versions' => DB_TABLE_PREFIX . 'req_versions', 'req_revisions' => DB_TABLE_PREFIX . 'req_revisions', - 'req_notify_assignments' => DB_TABLE_PREFIX . 'req_notify_assignments', + 'req_notify_assignments' => DB_TABLE_PREFIX . 'req_notify_assignments', 'rights' => DB_TABLE_PREFIX . 'rights', 'risk_assignments' => DB_TABLE_PREFIX . 'risk_assignments', 'role_rights' => DB_TABLE_PREFIX . 'role_rights', @@ -299,7 +299,8 @@ static public function getDBTables($tableNames = null) 'user_group_assign' => DB_TABLE_PREFIX . 'user_group_assign', 'user_testplan_roles' => DB_TABLE_PREFIX . 'user_testplan_roles', 'user_testproject_roles' => DB_TABLE_PREFIX . 'user_testproject_roles', - 'users' => DB_TABLE_PREFIX . 'users'); + 'users' => DB_TABLE_PREFIX . 'users', + 'req_subscription' => DB_TABLE_PREFIX . 'req_subscription'); if ($tableNames != null) { diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index 4cb8d892f4..2210fb1d28 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -3975,279 +3975,290 @@ function inlineImageProcessing($idCard,$scope,$rosettaStone) } } - /* - function: createNotificationFieldAssignment + /* + function: createNotificationFieldAssignment - args: t_project_id: current project id as int - field_name: the name of the field of which the values should be assigned as string - assignment_set: map of values and the user, who will be contacted - */ + args: t_project_id: current project id as int + field_name: the name of the field of which the values should be assigned as string + assignment_set: map of values and the user, who will be contacted + */ function createNotificationFieldAssignment($t_project_id, $field_name, &$assignment_set) { - $t_lang = isset($_SESSION['locale']) ? $_SESSION['locale'] : TL_DEFAULT_LOCALE; - //the status field always gets ID 0, because it is not a custom field. for custom fields, the id must be fetched first - $fieldId = 0; - if(strCmp($field_name,"Status") !== 0) { - $sql = "SELECT id FROM custom_fields WHERE name=\"$field_name\""; - $results = $this->db->fetchRowsIntoMap($sql,"id"); - if(isset($results)) { - foreach($results as $val) { - $fieldId = $val["id"]; - } - } else { - $fieldId = -1; - } - } - else { - //for reasons of localization the field values of the status field will always be written to the database in english language. - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $assignment_set_new = array(); - foreach($assignment_set as $fieldVal => $userName) { - foreach($statusFieldValsLocalized as $index => $fieldValLocalized) { - if(strcmp($fieldVal,$fieldValLocalized) == 0) { - $assignment_set_new[$statusFieldValsEN[$index]] = $userName; - } - } - } - $assignment_set = $assignment_set_new; - } - - //insert the data if the field name is valid - if(fieldId >= 0) { - $sql = "SELECT field_id" - . " FROM req_notify_assignments" - . " WHERE test_project_id=$t_project_id" - . " AND field_id=$fieldId"; - - $retValSet = $this->db->fetchRowsIntoMap($sql,"field_id"); - if(isset($retValSet)) { - $sql = "DELETE FROM req_notify_assignments" - . " WHERE test_project_id=$t_project_id AND field_id=$fieldId"; - $this->db->exec_query($sql); - } - $insertInto = "INSERT INTO req_notify_assignments (test_project_id,field_id,field_value,assigned_user_id) VALUES"; - $sql=$insertInto; - foreach($assignment_set as $key => $val) { - if(strlen($val)>0) { - $sql .= " ($t_project_id,$fieldId,\"$key\",(SELECT id FROM users WHERE login=\"$val\")),"; - } - } - if(strlen($sql)>strlen($insertInto)) { - $sql=rtrim($sql, ","); - $sql.=";"; - $this->db->exec_query($sql); - } - } + $t_lang = isset($_SESSION['locale']) ? $_SESSION['locale'] : TL_DEFAULT_LOCALE; + //the status field always gets ID 0, because it is not a custom field. for custom fields, the id must be fetched first + $fieldId = 0; + if(strCmp($field_name,"Status") !== 0) { + $sql = "SELECT id FROM {$this->tables['custom_fields']} WHERE name=\"$field_name\""; + $results = $this->db->fetchRowsIntoMap($sql,"id"); + if(isset($results)) { + foreach($results as $val) { + $fieldId = $val["id"]; + } + } else { + $fieldId = -1; + } + } + else { + //for reasons of localization the field values of the status field will always be written to the database in english language. + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $assignment_set_new = array(); + foreach($assignment_set as $fieldVal => $userName) { + foreach($statusFieldValsLocalized as $index => $fieldValLocalized) { + if(strcmp($fieldVal,$fieldValLocalized) == 0) { + $assignment_set_new[$statusFieldValsEN[$index]] = $userName; + } + } + } + $assignment_set = $assignment_set_new; } - /* - function: deleteNotificationFieldAssignmentsByFieldName - - args: t_project_id: current project id as int - field_name: the name of the field of which the assignments should be deleted - */ + //insert the data if the field name is valid + if(fieldId >= 0) { + $sql = "SELECT field_id" + . " FROM {$this->tables['req_notify_assignments']}" + . " WHERE test_project_id=$t_project_id" + . " AND field_id=$fieldId"; + + $retValSet = $this->db->fetchRowsIntoMap($sql,"field_id"); + if(isset($retValSet)) { + $sql = "DELETE FROM req_notify_assignments" + . " WHERE test_project_id=$t_project_id AND field_id=$fieldId"; + $this->db->exec_query($sql); + } + $insertInto = "INSERT INTO {$this->tables['req_notify_assignments']} (test_project_id,field_id,field_value,assigned_user_id) VALUES"; + $sql=$insertInto; + foreach($assignment_set as $key => $val) { + if(strlen($val)>0) { + $sql .= " ($t_project_id,$fieldId,\"$key\",(SELECT id FROM {$this->tables['users']} WHERE login=\"$val\")),"; + } + } + if(strlen($sql)>strlen($insertInto)) { + $sql=rtrim($sql, ","); + $sql.=";"; + $this->db->exec_query($sql); + } + } + } + + /* + function: deleteNotificationFieldAssignmentsByFieldName + + args: t_project_id: current project id as int + field_name: the name of the field of which the assignments should be deleted + */ function deleteNotificationFieldAssignmentsByFieldName($t_project_id,$fieldName) { - //the status field is handeld specificly, because it is not a custom field always gets id=0; - if(strCmp($fieldName,"Status")===0){ - $sql = "DELETE FROM req_notify_assignments " - . "WHERE test_project_id=$t_project_id AND field_id=0"; - } else { - $sql = "DELETE FROM req_notify_assignments " - . "WHERE test_project_id=$t_project_id AND field_id=(SELECT id FROM custom_fields WHERE name=\"$fieldName\")"; - } - - $this->db->exec_query($sql); + //the status field is handeld specificly, because it is not a custom field always gets id=0; + if(strCmp($fieldName,"Status")===0){ + $sql = "DELETE FROM {$this->tables['req_notify_assignments']} " + . "WHERE test_project_id=$t_project_id AND field_id=0"; + } else { + $sql = "DELETE FROM {$this->tables['req_notify_assignments']} " + . "WHERE test_project_id=$t_project_id AND field_id=(SELECT id FROM {$this->tables['custom_fields']} WHERE name=\"$fieldName\")"; + } + + $this->db->exec_query($sql); } function deleteNotificationFieldAssignmentsByFieldId($t_project_id,$fieldId) { - //the status field is handeld specificly, because it is not a custom field always gets id=0; - $sql = "DELETE FROM req_notify_assignments " - . "WHERE test_project_id=$t_project_id AND field_id=$fieldId"; - - $this->db->exec_query($sql); + //the status field is handeld specificly, because it is not a custom field always gets id=0; + $sql = "DELETE FROM {$this->tables['req_notify_assignments']} " + . "WHERE test_project_id=$t_project_id AND field_id=$fieldId"; + + $this->db->exec_query($sql); } - /* - function: getAllNotificationFieldAssignments - - args: t_project_id: current project id as int - */ + /* + function: getAllNotificationFieldAssignments + + args: t_project_id: current project id as int + */ function getAllNotificationFieldAssignments($t_project_id) { - $sql="SELECT custom_fields.name,field_value,login" - ." FROM req_notify_assignments,users,custom_fields" - ." WHERE test_project_id=$t_project_id" - ." AND users.id = req_notify_assignments.assigned_user_id" - ." AND custom_fields.id=req_notify_assignments.field_id" - ." ORDER BY test_project_id, custom_fields.name;"; - - $results = $this->db->get_recordset($sql); - - $currentFieldName = ""; - - //tansform the results into a datastructure which is better usable - foreach($results as $key => $val) { - if(strcmp($currentFieldName,$results[$key]["name"])!==0) { - $currentFieldName = $results[$key]["name"]; - $transformedResults[$currentFieldName]["field_value"] = array(); - $transformedResults[$currentFieldName]["user_name"] = array(); - } - array_push($transformedResults[$currentFieldName]["field_value"],$val["field_value"]); - array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); - } - - //fetch Assignements for "Status"-field seperately, because it is not a custom field - $sql="SELECT field_value,login" - ." FROM req_notify_assignments,users" - ." WHERE test_project_id=$t_project_id" - ." AND users.id = req_notify_assignments.assigned_user_id" - ." AND req_notify_assignments.field_id = 0" - ." ORDER BY test_project_id;"; - - $results = $this->db->get_recordset($sql); - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $localizedFieldVal = ""; - foreach($results as $key => $val) { - $localizedFieldVal = $val["field_value"]; - if(strcmp($currentFieldName,"Status")!==0) { - $currentFieldName = "Status"; - $transformedResults[$currentFieldName]["field_value"] = array(); - $transformedResults[$currentFieldName]["user_name"] = array(); - } - foreach($statusFieldValsEN as $index => $fieldValEN) { - if(strcmp($fieldValEN,$localizedFieldVal)==0){ - $localizedFieldVal = $statusFieldValsLocalized[$index]; - break; - } - } - array_push($transformedResults[$currentFieldName]["field_value"],$localizedFieldVal); - array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); - } - - return $transformedResults; + $sql="SELECT {$this->tables['custom_fields']}.name,field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']},{$this->tables['custom_fields']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['custom_fields']}.id={$this->tables['req_notify_assignments']}.field_id" + ." ORDER BY test_project_id, {$this->tables['custom_fields']}.name;"; + + $results = $this->db->get_recordset($sql); + + $currentFieldName = ""; + + //tansform the results into a datastructure which is better usable + foreach($results as $key => $val) { + if(strcmp($currentFieldName,$results[$key]["name"])!==0) { + $currentFieldName = $results[$key]["name"]; + $transformedResults[$currentFieldName]["field_value"] = array(); + $transformedResults[$currentFieldName]["user_name"] = array(); + } + array_push($transformedResults[$currentFieldName]["field_value"],$val["field_value"]); + array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); } - + + //fetch Assignements for "Status"-field seperately, because it is not a custom field + $sql="SELECT field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['req_notify_assignments']}.field_id = 0" + ." ORDER BY test_project_id;"; + + $results = $this->db->get_recordset($sql); + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + foreach($results as $key => $val) { + $localizedFieldVal = $val["field_value"]; + if(strcmp($currentFieldName,"Status")!==0) { + $currentFieldName = "Status"; + $transformedResults[$currentFieldName]["field_value"] = array(); + $transformedResults[$currentFieldName]["user_name"] = array(); + } + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$localizedFieldVal)==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } + } + array_push($transformedResults[$currentFieldName]["field_value"],$localizedFieldVal); + array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); + } + + return $transformedResults; + } + function getStatusFieldValsLocaledForAssignment($langStr = null) { - $fieldVals = array(8); - $fieldVals[0] = lang_get("req_status_draft", $langStr); - $fieldVals[1] = lang_get("req_status_review", $langStr); - $fieldVals[2] = lang_get("req_status_rework", $langStr); - $fieldVals[3] = lang_get("req_status_finish", $langStr); - $fieldVals[4] = lang_get("req_status_implemented", $langStr); - $fieldVals[5] = lang_get("req_status_obsolete", $langStr); - $fieldVals[6] = lang_get("req_status_not_testable", $langStr); - $fieldVals[7] = lang_get("review_status_valid", $langStr); - return $fieldVals; + $fieldVals = array(8); + $fieldVals[0] = lang_get("req_status_draft", $langStr); + $fieldVals[1] = lang_get("req_status_review", $langStr); + $fieldVals[2] = lang_get("req_status_rework", $langStr); + $fieldVals[3] = lang_get("req_status_finish", $langStr); + $fieldVals[4] = lang_get("req_status_implemented", $langStr); + $fieldVals[5] = lang_get("req_status_obsolete", $langStr); + $fieldVals[6] = lang_get("req_status_not_testable", $langStr); + $fieldVals[7] = lang_get("review_status_valid", $langStr); + return $fieldVals; } - /* - function: getNotificationFieldAssignmentByFieldName - - args: t_project_id: current project id as int - field_name: the name of the field of which the values should be fetched - */ + /* + function: getNotificationFieldAssignmentByFieldName + + args: t_project_id: current project id as int + field_name: the name of the field of which the values should be fetched + */ function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { - if(strCmp($field_name,"Status") === 0) { - $sql="SELECT field_value,login" - ." FROM req_notify_assignments,users" - ." WHERE test_project_id=$t_project_id" - ." AND users.id = req_notify_assignments.assigned_user_id" - ." AND req_notify_assignments.field_id = 0"; - } else { - $sql="SELECT field_value,login" - ." FROM req_notify_assignments,users,custom_fields" - ." WHERE test_project_id=$t_project_id" - ." AND users.id = req_notify_assignments.assigned_user_id" - ." AND custom_fields.name = \"$field_name\"" - ." AND custom_fields.id=req_notify_assignments.field_id" - ." ORDER BY test_project_id, custom_fields.name;"; - } - - //tansform the results into a datastructure which is better usable - $transformedResults = array(); - $results = $this->db->get_recordset($sql); - - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $localizedFieldVal = ""; - - $transformedResults[$field_name]["field_value"] = array(); - $transformedResults[$field_name]["user_name"] = array(); - foreach($results as $key => $val) { - - $localizedFieldVal = $val["field_value"]; - foreach($statusFieldValsEN as $index => $fieldValEN) { - if(strcmp($fieldValEN,$localizedFieldVal)==0){ - $localizedFieldVal = $statusFieldValsLocalized[$index]; - break; - } - } - array_push($transformedResults[$field_name]["field_value"],$localizedFieldVal); - array_push($transformedResults[$field_name]["user_name"],$val["login"]); - } - - return $transformedResults; + if(strCmp($field_name,"Status") === 0) { + $sql="SELECT field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['req_notify_assignments']}.field_id = 0"; + } else { + $sql="SELECT field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']},{$this->tables['custom_fields']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['custom_fields']}.name = \"$field_name\"" + ." AND {$this->tables['custom_fields']}.id={$this->tables['req_notify_assignments']}.field_id" + ." ORDER BY test_project_id, {$this->tables['custom_fields']}.name;"; } - - function getSubedUsers($tproject_id, $requirement_id) { - $sql = "SELECT id, login, email" - ." FROM users, req_subscription" - ." WHERE req_subscription.fk_req_id = $requirement_id" - ." AND req_subscription.fk_user_id = users.id" - ." AND req_subscription.tproject_id = $tproject_id;"; - $results = $this->db->get_recordset($sql); - return $results; + + //tansform the results into a datastructure which is better usable + $transformedResults = array(); + $results = $this->db->get_recordset($sql); + + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + + $transformedResults[$field_name]["field_value"] = array(); + $transformedResults[$field_name]["user_name"] = array(); + foreach($results as $key => $val) { + + $localizedFieldVal = $val["field_value"]; + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$localizedFieldVal)==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } + } + array_push($transformedResults[$field_name]["field_value"],$localizedFieldVal); + array_push($transformedResults[$field_name]["user_name"],$val["login"]); + } + + return $transformedResults; + } + + function getSubscribedUsers($tproject_id, $requirement_id) { + $sql = "SELECT id, login, email, {$this->tables['users']}.locale" + ." FROM {$this->tables['users']}, {$this->tables['req_subscription']}" + ." WHERE {$this->tables['req_subscription']}.req_id = $requirement_id" + ." AND {$this->tables['req_subscription']}.user_id = {$this->tables['users']}.id" + ." AND {$this->tables['req_subscription']}.tproject_id = $tproject_id;"; + $results = $this->db->get_recordset($sql); + return $results; } function createSubscription($tproject_id, $requirement_id, $userId) { - $sql = "SELECT id" - ." FROM requirements" - ." WHERE requirements.id = $requirement_id;"; - $results = $this->db->get_recordset($sql); - if(!isset($results)) { - return; - } - - $sql = "SELECT id" - ." FROM users" - ." WHERE users.id = $userId;"; - $results = $this->db->get_recordset($sql); - if(!isset($results)) { - return; - } - - $sql = "SELECT fk_req_id" - ." FROM req_subscription" - ." WHERE fk_user_id = $userId" - ." AND fk_req_id = $requirement_id;"; - $results = $this->db->get_recordset($sql); - if(isset($results)) { - return; - } - - $sql = "INSERT INTO req_subscription" - ." VALUES ($requirement_id,$userId,$tproject_id);"; - $this->db->exec_query($sql); + $sql = "SELECT id" + ." FROM {$this->tables['requirements']}" + ." WHERE {$this->tables['requirements']}.id = $requirement_id;"; + $results = $this->db->get_recordset($sql); + if(!isset($results)) { + return; + } + + $sql = "SELECT id" + ." FROM {$this->tables['users']}" + ." WHERE {$this->tables['users']}.id = $userId;"; + $results = $this->db->get_recordset($sql); + if(!isset($results)) { + return; + } + + $sql = "SELECT req_id" + ." FROM {$this->tables['req_subscription']}" + ." WHERE user_id = $userId" + ." AND req_id = $requirement_id;"; + $results = $this->db->get_recordset($sql); + if(isset($results)) { + return; + } + + $sql = "INSERT INTO {$this->tables['req_subscription']}" + ." VALUES ($requirement_id,$userId,$tproject_id);"; + $this->db->exec_query($sql); } function removeSubscription($tproject_id, $requirement_id, $userId) { - $sql = "DELETE FROM req_subscription" - ." WHERE req_subscription.fk_req_id = $requirement_id" - ." AND req_subscription.fk_user_id = $userId" - ." AND req_subscription.tproject_id = $tproject_id;"; - - $this->db->exec_query($sql); + $sql = "DELETE FROM {$this->tables['req_subscription']}" + ." WHERE {$this->tables['req_subscription']}.req_id = $requirement_id" + ." AND {$this->tables['req_subscription']}.user_id = $userId" + ." AND {$this->tables['req_subscription']}.tproject_id = $tproject_id;"; + + $this->db->exec_query($sql); + } + + function getAllReqSubscribed($tproject_id, $userId) { + $sql = "SELECT {$this->tables['req_subscription']}.req_id AS \"reqID\"" + ." FROM {$this->tables['req_subscription']}" + ." WHERE {$this->tables['req_subscription']}.user_id = $userId" + ." AND {$this->tables['req_subscription']}.tproject_id = $tproject_id;"; + + $results = $this->db->get_recordset($sql); + return $results; } - function getAllReqSubbed($tproject_id, $userId) { - $sql = "SELECT req_subscription.fk_req_id AS \"reqID\"" - ." FROM req_subscription" - ." WHERE req_subscription.fk_user_id = $userId" - ." AND req_subscription.tproject_id = $tproject_id;"; - - $results = $this->db->get_recordset($sql); - return $results; + function getAssignedUsers($tproject_id, $field_id, $reqState) { + $sqlWhere = "WHERE id = (SELECT assigned_user_id" + ." FROM {$this->tables['req_notify_assignments']}" + ." WHERE test_project_id = $tproject_id" + ." AND field_id = $field_id" + ." AND field_value = \"$reqState\")"; + + $assignedUsers = tlUser::getAll($this->db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); + return $assignedUsers; } } // class end \ No newline at end of file diff --git a/lib/general/mainPage.php b/lib/general/mainPage.php index 80aca78d9e..7b99a8a8fe 100644 --- a/lib/general/mainPage.php +++ b/lib/general/mainPage.php @@ -77,28 +77,28 @@ if($testplanID > 0) { - // if this test plan is present on $arrPlans - // OK we will set it on $arrPlans as selected one. - // else - // need to set test plan on session - // - $index=0; - $found=0; - $loop2do=count($arrPlans); - for($idx=0; $idx < $loop2do; $idx++) - { - if( $arrPlans[$idx]['id'] == $testplanID ) - { - $found = 1; - $index = $idx; - $break; + // if this test plan is present on $arrPlans + // OK we will set it on $arrPlans as selected one. + // else + // need to set test plan on session + // + $index=0; + $found=0; + $loop2do=count($arrPlans); + for($idx=0; $idx < $loop2do; $idx++) + { + if( $arrPlans[$idx]['id'] == $testplanID ) + { + $found = 1; + $index = $idx; + $break; } } if( $found == 0 ) { // update test plan id $testplanID = $arrPlans[0]['id']; - setSessionTestPlan($arrPlans[0]); + setSessionTestPlan($arrPlans[0]); } $arrPlans[$index]['selected']=1; } @@ -106,8 +106,8 @@ $gui->testplanRole = null; if ($testplanID && isset($currentUser->tplanRoles[$testplanID])) { - $role = $currentUser->tplanRoles[$testplanID]; - $gui->testplanRole = $tlCfg->gui->role_separator_open . $role->getDisplayName() . $tlCfg->gui->role_separator_close; + $role = $currentUser->tplanRoles[$testplanID]; + $gui->testplanRole = $tlCfg->gui->role_separator_open . $role->getDisplayName() . $tlCfg->gui->role_separator_close; } $rights2check = array('testplan_execute','testplan_create_build','testplan_metrics','testplan_planning', @@ -225,9 +225,9 @@ function getGrants($dbHandler,$user,$forceToNo=false) /** redirect admin to create testproject if not found */ if ($grants['project_edit'] && !isset($_SESSION['testprojectID'])) { - tLog('No project found: Assume a new installation and redirect to create it','WARNING'); - redirect($_SESSION['basehref'] . 'lib/project/projectEdit.php?doAction=create'); - exit(); + tLog('No project found: Assume a new installation and redirect to create it','WARNING'); + redirect($_SESSION['basehref'] . 'lib/project/projectEdit.php?doAction=create'); + exit(); } foreach($right2check as $humankey => $right) diff --git a/lib/notificationassignments/notificationAssignmentConfig.php b/lib/notificationassignments/notificationAssignmentConfig.php index d3f903128d..08615c6808 100644 --- a/lib/notificationassignments/notificationAssignmentConfig.php +++ b/lib/notificationassignments/notificationAssignmentConfig.php @@ -14,16 +14,16 @@ $reqMgr = new requirement_mgr($db); $_realPOST = getRealInput('POST'); if(array_key_exists("submit",$_realPOST)) { - $selectFieldValues = array(); - foreach($_realPOST as $key => $val) { - $selectPos = strpos($key,"select_"); - if($selectPos !== false) { - $selectFieldValues[str_replace("_"," ",substr($key,$selectPos+7))] = $val; - } - } - $reqMgr->createNotificationFieldAssignment($args->tproject_id, $_realPOST["fieldName"], $selectFieldValues); + $selectFieldValues = array(); + foreach($_realPOST as $key => $val) { + $selectPos = strpos($key,"select_"); + if($selectPos !== false) { + $selectFieldValues[str_replace("_"," ",substr($key,$selectPos+7))] = $val; + } + } + $reqMgr->createNotificationFieldAssignment($args->tproject_id, $_realPOST["fieldName"], $selectFieldValues); }elseif(array_key_exists("delete",$_realPOST)) { - $reqMgr->deleteNotificationFieldAssignmentsByFieldName($args->tproject_id,$_realPOST["fieldName"]); + $reqMgr->deleteNotificationFieldAssignmentsByFieldName($args->tproject_id,$_realPOST["fieldName"]); } //create GUI @@ -50,18 +50,18 @@ function init_gui(&$db, &$args, &$reqMgr) $linkedCustomfields = $tprojectMgr->get_linked_custom_fields($args->tproject_id,"requirement"); $fieldNamesForGUISize = 2; foreach($linkedCustomfields as $key => $val) { - if($val["type"] == 6) { - $fieldNamesForGUISize++; - } + if($val["type"] == 6) { + $fieldNamesForGUISize++; + } } $ArrFieldNamesForGUI = array(fieldNamesForGUISize); $ArrFieldNamesForGUI[0] = ""; $ArrFieldNamesForGUI["Status"] = "Status"; foreach($linkedCustomfields as $customField) { - if($customField["type"] == 6) { - $ArrFieldNamesForGUI[$customField["name"]] = $customField["name"]; - } + if($customField["type"] == 6) { + $ArrFieldNamesForGUI[$customField["name"]] = $customField["name"]; + } } $gui->fieldNames = $ArrFieldNamesForGUI; diff --git a/lib/notificationassignments/notificationAssignmentCreate.php b/lib/notificationassignments/notificationAssignmentCreate.php index daf9f3f667..79eca49958 100644 --- a/lib/notificationassignments/notificationAssignmentCreate.php +++ b/lib/notificationassignments/notificationAssignmentCreate.php @@ -36,15 +36,15 @@ function init_gui(&$db) //fetch the possible values of the given field if(strcmp($fieldName,"Status") === 0) { - $gui->fieldVals = $reqMgr->getStatusFieldValsLocaledForAssignment(); + $gui->fieldVals = $reqMgr->getStatusFieldValsLocaledForAssignment(); } else { - $cfield_mgr = new cfield_mgr($db); - $selctedCField = $cfield_mgr->get_by_name($fieldName); - foreach($selctedCField as $val) { - $gui->fieldVals = explode("|",$val["possible_values"]); - } + $cfield_mgr = new cfield_mgr($db); + $selctedCField = $cfield_mgr->get_by_name($fieldName); + foreach($selctedCField as $val) { + $gui->fieldVals = explode("|",$val["possible_values"]); + } } $args = init_args($db); @@ -56,8 +56,8 @@ function init_gui(&$db) } function init_args(&$db) { - $args->user_id = isset($_SESSION['userID']) ? $_SESSION['userID'] : 0; - $args->tproject_id = isset($_SESSION['testprojectID']) ? intval($_SESSION['testprojectID']) : 0; - return $args; + $args->user_id = isset($_SESSION['userID']) ? $_SESSION['userID'] : 0; + $args->tproject_id = isset($_SESSION['testprojectID']) ? intval($_SESSION['testprojectID']) : 0; + return $args; } ?> \ No newline at end of file diff --git a/lib/requirements/reqCommands.class.php b/lib/requirements/reqCommands.class.php index 7a29bafdad..49de6ffeca 100644 --- a/lib/requirements/reqCommands.class.php +++ b/lib/requirements/reqCommands.class.php @@ -201,6 +201,7 @@ function doCreate(&$argsObj,$request) $dummy = end($siblings); $order = $dummy['node_order']+1; } + $ret = $this->reqMgr->create($argsObj->req_spec_id,$argsObj->reqDocId,$argsObj->title, $argsObj->scope,$argsObj->user_id,$argsObj->reqStatus, $argsObj->reqType,$argsObj->expected_coverage,$order); @@ -236,6 +237,7 @@ function doCreate(&$argsObj,$request) $obj->req['type'] = $argsObj->reqType; $obj->req['req_doc_id'] = $argsObj->reqDocId; } + return $obj; } @@ -254,7 +256,7 @@ function doUpdate(&$argsObj,$request) $descr_prefix = lang_get('req') . TITLE_SEP; $ret['msg'] = null; - $this->sendMailOnStatusChange($this->db,$argsObj); + $this->sendMailOnStatusChange($this->db,$argsObj); // Before Update want to understand what has changed regarding previous version/revision $oldData = $this->reqMgr->get_by_id($argsObj->req_id,$argsObj->req_version_id); @@ -342,26 +344,25 @@ function doUpdate(&$argsObj,$request) */ function doDelete(&$argsObj,$request) { - $usersObj = new tlUser($this->db); - $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; - $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; - $req_doc_id = $currentReq["req_doc_id"]; - $reqTitle = $currentReq["title"]; - $scope = $currentReq["scope"]; - - $subject = lang_get('req_delete_subscribtion_subject'); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $body = lang_get('req_delete_subscribtion'); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%scope", $scope, $body); - $this->notifySubbedUsers($subject, $body, $argsObj); - $subbedUsers = $this->reqMgr->getSubedUsers($argsObj->tproject_id,$argsObj->requirement_id); - foreach($subbedUsers as $subbedUser) { - $this->reqMgr->removeSubscription($argsObj->tproject_id, $argsObj->requirement_id,$subbedUser["id"]); - } - + $usersObj = new tlUser($this->db); + $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $currentReq["req_doc_id"]; + $reqTitle = $currentReq["title"]; + $scope = $currentReq["scope"]; + + $string_replace_map = array ( + "%req_doc_id" => $req_doc_id, + "%reqTitle" => $reqTitle, + "%modifier" => $modifier, + "%scope" => $scope + ); + $this->notifySubscribedUsers($argsObj, "req_delete_subscribtion_subject", "req_delete_subscribtion", $string_replace_map); + $subscribedUsers = $this->reqMgr->getSubscribedUsers($argsObj->tproject_id,$argsObj->requirement_id); + foreach($subscribedUsers as $subscribedUser) { + $this->reqMgr->removeSubscription($argsObj->tproject_id, $argsObj->requirement_id,$subscribedUser["id"]); + } + $obj = $this->initGuiBean(); $obj->display_path = false; $reqVersionSet = $this->reqMgr->get_by_id($argsObj->req_id); @@ -586,25 +587,24 @@ function: doCreateVersion */ function doCreateVersion(&$argsObj,$request) { - $usersObj = new tlUser($this->db); - $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; - - $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; - $req_doc_id = $currentReq["req_doc_id"]; - $reqTitle = $currentReq["title"]; - $scope = $currentReq["scope"]; - $log_msg = $argsObj->log_message; - - $subject = lang_get('req_version_create_subscribtion_subject'); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $body = lang_get('req_version_create_subscribtion'); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%log_msg", $log_msg, $body); - $body = str_replace("%scope", $scope, $body); - $this->notifySubbedUsers($subject, $body, $argsObj); - + $usersObj = new tlUser($this->db); + $currentReq = $this->reqMgr->get_by_id($argsObj->requirement_id)[0]; + + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $currentReq["req_doc_id"]; + $reqTitle = $currentReq["title"]; + $scope = $currentReq["scope"]; + $log_msg = $argsObj->log_message; + + $string_replace_map = array ( + "%req_doc_id" => $req_doc_id, + "%reqTitle" => $reqTitle, + "%modifier" => $modifier, + "%log_msg" => $log_msg, + "%scope" => $scope + ); + $this->notifySubscribedUsers($argsObj, 'req_version_create_subscribtion_subject', 'req_version_create_subscribtion', $string_replace_map); + $ret = $this->reqMgr->create_new_version($argsObj->req_id,$argsObj->user_id, $argsObj->req_version_id,$argsObj->log_message); $obj = $this->initGuiBean(); @@ -622,27 +622,26 @@ function doCreateVersion(&$argsObj,$request) */ function doDeleteVersion(&$argsObj,$request) { - $usersObj = new tlUser($this->db); - $reqversion = $this->reqMgr->get_version($argsObj->req_version_id); - $req = array_pop($this->reqMgr->getByDocID($reqversion["req_doc_id"])); - $argsObj->requirement_id = $req["id"]; - - $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; - $req_doc_id = $reqversion["req_doc_id"]; - $reqTitle = $reqversion["title"]; - $scope = $reqversion["scope"]; - $versionNr = $reqversion["version"]; - - $subject = lang_get('req_version_delete_subscribtion_subject'); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $body = lang_get('req_version_delete_subscribtion'); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%scope", $scope, $body); - $body = str_replace("%versionNr", $versionNr, $body); - $this->notifySubbedUsers($subject, $body, $argsObj); - + $usersObj = new tlUser($this->db); + $reqversion = $this->reqMgr->get_version($argsObj->req_version_id); + $req = array_pop($this->reqMgr->getByDocID($reqversion["req_doc_id"])); + $argsObj->requirement_id = $req["id"]; + + $modifier = array_pop($usersObj->getNames($this->db,$argsObj->user_id))["login"]; + $req_doc_id = $reqversion["req_doc_id"]; + $reqTitle = $reqversion["title"]; + $scope = $reqversion["scope"]; + $versionNr = $reqversion["version"]; + + $string_replace_map = array ( + "%req_doc_id" => $req_doc_id, + "%reqTitle" => $reqTitle, + "%modifier" => $modifier, + "%scope" => $scope, + "%versionNr" => $versionNr + ); + $this->notifySubscribedUsers($argsObj, 'req_version_delete_subscribtion_subject', 'req_version_delete_subscribtion', $string_replace_map); + $obj = $this->initGuiBean(); $node = $this->reqMgr->tree_mgr->get_node_hierarchy_info($argsObj->req_version_id); $req_version = $this->reqMgr->get_by_id($node['parent_id'],$argsObj->req_version_id); @@ -797,10 +796,6 @@ function doCreateRevision(&$argsObj,$request) $obj->req_id = $argsObj->req_id; return $obj; } - - - - /** * @@ -1008,84 +1003,80 @@ private function initGuiObjForAttachmentOperations($argsObj) private function sendMailOnStatusChange(&$db,&$args) { - if(strcmp($_POST["req_spec_id"],"") !== 0) { - $fieldMetadataMgr = new cfield_mgr($db); - $usersObj = new tlUser($db); - $reqMgr = new requirement_mgr($db); - $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; - $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); - - $scope = $args->scope; - $reqTitle = $currentReq["title"]; - $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; - $from = config_get("from_email"); - $subbedUsers = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); - $req_doc_id = $currentReq["req_doc_id"]; - - foreach($fieldNames as $fieldName => $fieldData) { - if(strcmp($fieldName,"Status") === 0) { - $reqState = $this->getStatusIdentifier($args->reqStatus); - $oldFieldVal = $this->getStatusIdentifier($currentReq["status"]); - $fieldMetadata["id"] = 0; - $fieldMetadata["name"] = "Status"; - } - else - { - $fieldMetadata = array_pop($fieldMetadataMgr->get_by_name($fieldName)); - $customFieldPOSTName = "custom_field_".$fieldMetadata["type"]."_".$fieldMetadata["id"]; - - $reqState = $_POST[$customFieldPOSTName]; - - $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); - $oldFieldVal = NULL; - //richtiges cfield raussuchen - foreach($oldFieldValArr as $oldFieldValEle) { - if(strcmp($oldFieldValEle["name"], $fieldName) === 0) { - $oldFieldVal = trim($oldFieldValEle["value"]); - break; - } - } - } - - if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { - $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); - if(strcmp($fieldName,"Status") === 0) { - $reqState = $this->getStatusIdentifier($args->reqStatus, "en_GB"); - } - $sqlWhere = "WHERE id = (SELECT assigned_user_id" - ." FROM req_notify_assignments" - ." WHERE test_project_id = {$args->tproject_id}" - ." AND field_id = {$fieldMetadata["id"]}" - ." AND field_value = \"$reqState\")"; - if(strcmp($fieldName,"Status") === 0) { - $reqState = $this->getStatusIdentifier($args->reqStatus); - } - - $assignedUsers = tlUser::getAll($db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); - $subject = lang_get('req_change_notification_subject'); - $subject = str_replace("%reqState", $reqState, $subject); - $subject = str_replace("%req_doc_id", $req_doc_id, $subject); - $subject = str_replace("%reqTitle", $reqTitle, $subject); - $body = lang_get('req_change_notification'); - $body = str_replace("%reqTitle", $reqTitle, $body); - $body = str_replace("%modifier", $modifier, $body); - $body = str_replace("%oldFieldVal", $oldFieldVal, $body); - $body = str_replace("%reqState", $reqState, $body); - $body = str_replace("%scope", $scope, $body); - - foreach($assignedUsers as $assignedUser) { - $retVal = email_send($from,$assignedUser->emailAddress,$subject,$body,'',false,true,null); - foreach($subbedUsers as $key => $subbedUser) { - if(strcmp($subbedUser["login"],$assignedUser->login) == 0) { - unset($subbedUsers[$key]); - break; - } - } - } - } - } - - //send mail to all subbed users + if(strcmp($_POST["req_spec_id"],"") !== 0) { + $fieldMetadataMgr = new cfield_mgr($db); + $usersObj = new tlUser($db); + $reqMgr = new requirement_mgr($db); + $currentReq = $reqMgr->get_by_id($args->requirement_id)[0]; + $fieldNames = $reqMgr->getAllNotificationFieldAssignments($args->tproject_id); + + $scope = $args->scope; + $reqTitle = $currentReq["title"]; + $modifier = array_pop($usersObj->getNames($db,$args->user_id))["login"]; + $from = config_get("from_email"); + $subscribedUsers = $reqMgr->getSubscribedUsers($args->tproject_id,$args->requirement_id); + $req_doc_id = $currentReq["req_doc_id"]; + + foreach($fieldNames as $fieldName => $fieldData) { + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus); + $oldFieldVal = $this->getStatusIdentifier($currentReq["status"]); + $fieldMetadata["id"] = 0; + $fieldMetadata["name"] = "Status"; + } + else + { + $fieldMetadata = array_pop($fieldMetadataMgr->get_by_name($fieldName)); + $customFieldPOSTName = "custom_field_".$fieldMetadata["type"]."_".$fieldMetadata["id"]; + + $reqState = $_POST[$customFieldPOSTName]; + + $oldFieldValArr = $reqMgr->get_linked_cfields($currentReq["id"],$currentReq["version_id"]); + $oldFieldVal = NULL; + //richtiges cfield raussuchen + foreach($oldFieldValArr as $oldFieldValEle) { + if(strcmp($oldFieldValEle["name"], $fieldName) === 0) { + $oldFieldVal = trim($oldFieldValEle["value"]); + break; + } + } + } + + if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { + $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus, "en_GB"); + } + + if(strcmp($fieldName,"Status") === 0) { + $reqState = $this->getStatusIdentifier($args->reqStatus); + } + + $assignedUsers = $reqMgr->getAssignedUsers($args->tproject_id,$fieldMetadata["id"],$reqState); + + foreach($assignedUsers as $assignedUser) { + $subject = lang_get('req_change_notification_subject',$assignedUser->locale); + $subject = str_replace("%reqState", $reqState, $subject); + $subject = str_replace("%req_doc_id", $req_doc_id, $subject); + $subject = str_replace("%reqTitle", $reqTitle, $subject); + $body = lang_get('req_change_notification',$assignedUser->locale); + $body = str_replace("%reqTitle", $reqTitle, $body); + $body = str_replace("%modifier", $modifier, $body); + $body = str_replace("%oldFieldVal", $oldFieldVal, $body); + $body = str_replace("%reqState", $reqState, $body); + $body = str_replace("%scope", $scope, $body); + $retVal = email_send($from,$assignedUser->emailAddress,$subject,$body,'',false,true,null); + foreach($subscribedUsers as $key => $subscribedUser) { + if(strcmp($subscribedUser["login"],$assignedUser->login) == 0) { + unset($subscribedUsers[$key]); + break; + } + } + } + } + } + + //send mail to all subbed users $subject = lang_get("req_change_subscribtion_subject"); $subject = str_replace("%reqTitle", $reqTitle, $subject); $subject = str_replace("%req_doc_id", $req_doc_id, $subject); @@ -1095,37 +1086,61 @@ private function sendMailOnStatusChange(&$db,&$args) $body = str_replace("%modifier", $modifier, $body); $body = str_replace("%scope", $scope, $body); - if(sizeof($subbedUsers)>0){ - foreach($subbedUsers as $subbedUser) { - $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); + if(sizeof($subscribedUsers)>0){ + foreach($subscribedUsers as $subscribedUser) { + $retVal = email_send($from,$subscribedUser["email"],$subject,$body,'',false,true,null); } } - } -} - -private function getStatusIdentifier($statusAbbr, $langStr=null) { - $fullStatusName = ""; - switch($statusAbbr) { - case "D": $fullStatusName = lang_get("req_status_draft",$langStr); break; - case "R": $fullStatusName = lang_get("req_status_review",$langStr); break; - case "W": $fullStatusName = lang_get("req_status_rework",$langStr); break; - case "F": $fullStatusName = lang_get("req_status_finish",$langStr); break; - case "I": $fullStatusName = lang_get("req_status_implemented",$langStr); break; - case "V": $fullStatusName = lang_get("review_status_valid",$langStr); break; - case "N": $fullStatusName = lang_get("req_status_not_testable",$langStr); break; - case "O": $fullStatusName = lang_get("req_status_obsolete",$langStr); break; - } - return $fullStatusName; -} - - -private function notifySubbedUsers($subject, $body, &$args) { - $subbedUsers = $this->reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); - $from = config_get("from_email"); - if(sizeof($subbedUsers)>0){ - foreach($subbedUsers as $subbedUser) { - $retVal = email_send($from,$subbedUser["email"],$subject,$body,'',false,true,null); - } - } + } + } + + + private function getStatusIdentifier($statusAbbr, $langStr=null) { + $fullStatusName = ""; + $req_cfg = config_get('req_cfg'); + switch($statusAbbr) { + case "D": + $fullStatusName = lang_get($req_cfg->status_labels['D'],$langStr); + break; + case "R": + $fullStatusName = lang_get($req_cfg->status_labels['R'],$langStr); + break; + case "W": + $fullStatusName = lang_get($req_cfg->status_labels['W'],$langStr); + break; + case "F": + $fullStatusName = lang_get($req_cfg->status_labels['F'],$langStr); + break; + case "I": + $fullStatusName = lang_get($req_cfg->status_labels['I'],$langStr); + break; + case "V": + $fullStatusName = lang_get($req_cfg->status_labels['V'],$langStr); + break; + case "N": + $fullStatusName = lang_get($req_cfg->status_labels['N'],$langStr); + break; + case "O": + $fullStatusName = lang_get($req_cfg->status_labels['O'],$langStr); + break; + } + return $fullStatusName; + } + + + private function notifySubscribedUsers(&$args, $subject_identifier, $body_identifier, $string_replace_map) { + $subscribedUsers = $this->reqMgr->getSubscribedUsers($args->tproject_id,$args->requirement_id); + $from = config_get("from_email"); + if(sizeof($subscribedUsers)>0){ + foreach($subscribedUsers as $subscribedUser) { + $subject = lang_get($subject_identifier, $subscribedUser["locale"]); + $body = lang_get($body_identifier, $subscribedUser["locale"]); + foreach($string_replace_map as $identifier => $subjectString) { + $subject = str_replace($identifier,$subjectString,$subject); + $body = str_replace($identifier,$subjectString,$body); + } + $retVal = email_send($from,$subscribedUser["email"],$subject,$body,'',false,true,null); + } + } } } \ No newline at end of file diff --git a/lib/requirements/reqManageSubs.php b/lib/requirements/reqManageSubs.php index e68b64c800..269028c5fe 100644 --- a/lib/requirements/reqManageSubs.php +++ b/lib/requirements/reqManageSubs.php @@ -62,7 +62,7 @@ // array to gather table data row per row $rows = array(); - $subbedReqs = $req_mgr->getAllReqSubbed($args->tproject_id, $_SESSION["userID"]); + $subscribedReqs = $req_mgr->getAllReqSubscribed($args->tproject_id, $_SESSION["userID"]); foreach($gui->reqIDs as $id) { $req = $reqSet[$id]; @@ -93,10 +93,10 @@ * the same as column headers are below!!! * * should be: - * 1. path - * 2. title - * 3. created_on - * 4. subscribed + * 1. path + * 2. title + * 3. created_on + * 4. subscribed */ $result[] = $pathCache[$req[0]['srs_id']]; @@ -109,21 +109,21 @@ // use html comment to sort properly by this columns (extjs) $result[] = "" . localizeTimeStamp($version['creation_ts'],$cfg->datetime) . " ({$version['author']})"; - - $isReqSubbed = false; - foreach($subbedReqs as $req) { - if($version["id"] == $req["reqID"]) { - $isReqSubbed = true; - break; - } - } - if($isReqSubbed) { - $result[] = "".lang_get("req_already_subbed"); - } - else { - $result[] = "".lang_get("req_not_subbed_yet"); - } - + + $isReqSubscribed = false; + foreach($subscribedReqs as $req) { + if($version["id"] == $req["reqID"]) { + $isReqSubscribed = true; + break; + } + } + if($isReqSubscribed) { + $result[] = "".lang_get("req_already_subscribed"); + } + else { + $result[] = "".lang_get("req_not_subscribed_yet"); + } + $rows[] = $result; } } @@ -146,7 +146,7 @@ * 1. path * 2. title * 3. created_on - * 4. subscribed + * 4. subscribed */ $columns = array(); $columns[] = array('title_key' => 'req_spec_short', 'width' => 150); diff --git a/lib/requirements/reqView.php b/lib/requirements/reqView.php index 62b58c4342..631123e78f 100644 --- a/lib/requirements/reqView.php +++ b/lib/requirements/reqView.php @@ -26,24 +26,24 @@ $gui = initialize_gui($db,$args,$tproject_mgr); $reqMgr = new requirement_mgr($db); if(array_key_exists("subscribe",$_POST)) { - if(strcmp($_POST["subscribe"],lang_get("btn_subscribe")) === 0) { - $reqMgr->createSubscription($args->tproject_id, $args->requirement_id, $args->userID); - $gui->isSubed = 1; - } - elseif (strcmp($_POST["subscribe"],lang_get("btn_unsubscribe")) === 0) { - $reqMgr->removeSubscription($args->tproject_id, $args->requirement_id, $args->userID); - $gui->isSubed = 0; - } + if(strcmp($_POST["subscribe"],lang_get("btn_subscribe")) === 0) { + $reqMgr->createSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $gui->isSubed = 1; + } + elseif (strcmp($_POST["subscribe"],lang_get("btn_unsubscribe")) === 0) { + $reqMgr->removeSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $gui->isSubed = 0; + } } else { - $gui->isSubed = 0; - $users = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); - foreach($users as $user) { - if($user["id"] === $args->userID) { - $gui->isSubed = 1; - break; - } - } + $gui->isSubed = 0; + $users = $reqMgr->getSubscribedUsers($args->tproject_id,$args->requirement_id); + foreach($users as $user) { + if($user["id"] === $args->userID) { + $gui->isSubed = 1; + break; + } + } } $smarty = new TLSmarty(); @@ -52,11 +52,11 @@ function subscribeUser($user_id, $req_id) { - + } function unsubscribeUser() { - + } /** * diff --git a/locale/de_DE/strings.txt b/locale/de_DE/strings.txt index cc6b7c67f7..b73452ccef 100644 --- a/locale/de_DE/strings.txt +++ b/locale/de_DE/strings.txt @@ -3655,9 +3655,21 @@ $TLS_assign_btn_change = "Zuweisungen ändern"; $TLS_assign_btn_delete = "Zuweisungen löschen"; // reqManageSubs.php -$TLS_req_already_subbed = "Abo beenden"; -$TLS_req_not_subbed_yet = "Abonnieren"; +$TLS_req_already_subscribed = "Abo beenden"; +$TLS_req_not_subscribed_yet = "Abonnieren"; $TLS_subscribtion_state = "Status des Abonnements"; +// reqCommands.class.php +$TLS_req_change_notification_subject = "[Statusänderung einer Anforderung] (%reqState) %req_doc_id:%reqTitle"; +$TLS_req_change_notification = "

Anforderung '%reqTitle' wurde von %modifier geändert.

Der Status wurde von '%oldFieldVal' zu '%reqState'.

**********************************

%scope

**********************************

Diese Email wurde automatisch generiert.

"; +$TLS_req_change_subscribtion_subject = "[Änderung einer Anforderung] %req_doc_id:%reqTitle"; +$TLS_req_change_subscribtion = "

Anforderung '%reqTitle' wurde von %modifier gändert.

Protokolleintrag:
%log_msg

**********************************

%scope

**********************************

Diese Email wurde automatisch generiert.

"; +$TLS_req_delete_subscribtion_subject = "[Löschen einer Anforderung] %req_doc_id:%reqTitle"; +$TLS_req_delete_subscribtion = "

Anforderung '%reqTitle' wurde von %modifier gelöscht.

**********************************

%scope

**********************************

Diese Email wurde automatisch generiert.

"; +$TLS_req_version_create_subscribtion_subject = "[Neue Anforderungsversion erstellt] %req_doc_id:%reqTitle"; +$TLS_req_version_create_subscribtion = "

Eine neue Version der Anforderung '%reqTitle' wurde von %modifier erstellt.

Protokolleintrag:
%log_msg

**********************************

%scope

**********************************

Diese Email wurde automatisch generiert.

"; +$TLS_req_version_delete_subscribtion_subject = "[Anforderungsversion gelöscht] %req_doc_id:%reqTitle"; +$TLS_req_version_delete_subscribtion = "

Version %versionNr der Anforderung '%reqTitle' wurde von %modifier gelöscht.

**********************************

%scope

**********************************

Diese Email wurde automatisch generiert.

"; + // ----- END ------------------------------------------------------------------ ?> diff --git a/locale/en_GB/strings.txt b/locale/en_GB/strings.txt index 515ac2c168..207a45288f 100644 --- a/locale/en_GB/strings.txt +++ b/locale/en_GB/strings.txt @@ -1009,15 +1009,15 @@ $TLS_cat_tools = $TLS_tools; //obsolete // reqCommands.class.php $TLS_req_change_notification_subject = "[Requirement State Change] (%reqState) %req_doc_id:%reqTitle"; -$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; -$TLS_req_change_subscribtion_subject = "[Requirement State Change] %req_doc_id:%reqTitle"; -$TLS_req_change_subscribtion = "

Requirement '%reqTitle' was updated by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_change_notification = "

Requirement '%reqTitle' was updated by %modifier.

The state was changed from '%oldFieldVal' to '%reqState'.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_change_subscribtion_subject = "[Requirement Change] %req_doc_id:%reqTitle"; +$TLS_req_change_subscribtion = "

Requirement '%reqTitle' was updated by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_req_delete_subscribtion_subject = "[Requirement Delete] %req_doc_id:%reqTitle"; -$TLS_req_delete_subscribtion = "

Requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_delete_subscribtion = "

Requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_req_version_create_subscribtion_subject = "[New Requirement Version Created] %req_doc_id:%reqTitle"; -$TLS_req_version_create_subscribtion = "

A new version of requirement '%reqTitle' was created by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_version_create_subscribtion = "

A new version of requirement '%reqTitle' was created by %modifier.

Log message:
%log_msg

**********************************

%scope

**********************************

This email was generated automatically.

"; $TLS_req_version_delete_subscribtion_subject = "[Requirement Version Delete] %req_doc_id:%reqTitle"; -$TLS_req_version_delete_subscribtion = "

Requirement version %versionNr of requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; +$TLS_req_version_delete_subscribtion = "

Requirement version %versionNr of requirement '%reqTitle' was deleted by %modifier.

**********************************

%scope

**********************************

This email was generated automatically.

"; // gui/templates/reqEdit.tpl $TLS_by = "by"; @@ -3991,7 +3991,7 @@ $TLS_old_style_login = 'Well known login screen'; $TLS_new_style_login = 'Try the new login screen'; // reqManageSubs.php -$TLS_req_already_subbed = "End Subscribtion"; -$TLS_req_not_subbed_yet = "Subscribe"; +$TLS_req_already_subscribed = "End Subscribtion"; +$TLS_req_not_subscribed_yet = "Subscribe"; $TLS_subscribtion_state = "State of Subscribtion"; // ----- END ------------------------------------------------------------------ diff --git a/logsaudits.log b/logsaudits.log new file mode 100644 index 0000000000..25a3e97db6 --- /dev/null +++ b/logsaudits.log @@ -0,0 +1,96 @@ + [16/Feb/23 13:32:47][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/23 13:33:41][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Test Project 'testlink' was created + [16/Feb/23 13:33:51][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + User 'admin' was saved + [16/Feb/23 13:34:09][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + User 'lejo' was created + [16/Feb/23 13:35:40][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Role 'guest' was saved + [16/Feb/23 13:38:58][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Custom field 'SE Prozess' was created + [16/Feb/23 13:38:58][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Custom field 'SE Prozess' was assigned to Test Project 'testlink' + [16/Feb/23 13:39:17][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Test Project 'testlink' - Requirement specification 'spec 1' was created + [16/Feb/23 13:39:31][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was created + [16/Feb/23 13:41:01][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/23 13:41:28][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/23 13:43:22][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was created + [16/Feb/23 13:52:54][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.4' was created + [16/Feb/23 13:53:44][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.5' was created + [16/Feb/23 14:00:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.6' was created + [16/Feb/23 14:08:04][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.6' was deleted + [16/Feb/23 14:09:29][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 08:20:01][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/24 08:23:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 08:25:28][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Logout of 'admin' + [16/Feb/24 08:25:34][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'lejo' from '::1' succeeded + [16/Feb/24 08:26:15][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 08:35:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 08:38:44][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 09:00:30][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 09:09:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 09:10:14][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 09:50:07][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved + [16/Feb/24 09:56:30][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Version 3 of Req 'DOCID:1.1' - anforderung 1 was deleted. + [16/Feb/24 09:57:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was deleted + [16/Feb/24 09:58:41][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Logout of 'lejo' + [16/Feb/24 09:58:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/24 09:59:32][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:12:39][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:15:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:23:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:25:34][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:27:05][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:29:27][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:31:15][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:32:42][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:54:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:56:23][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 10:57:25][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 11:54:23][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 11:55:42][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 11:58:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved + [16/Feb/24 12:04:20][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved diff --git a/logsconfig_check.txt b/logsconfig_check.txt new file mode 100644 index 0000000000..96e6fc79c7 --- /dev/null +++ b/logsconfig_check.txt @@ -0,0 +1,2 @@ +Install directory should be removed! +You should change the default password for the 'admin' account! \ No newline at end of file diff --git a/logsuserlog0.log b/logsuserlog0.log new file mode 100644 index 0000000000..dd156c5eb6 --- /dev/null +++ b/logsuserlog0.log @@ -0,0 +1,2759 @@ +[>>][56cc5cb27207c472984440][DEFAULT][/testlinkPrefixTest/install/installCheck.php][16/Feb/23 13:20:50] + [16/Feb/23 13:20:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ce9dac44335122973][DEFAULT][/testlinkPrefixTest/install/installNewDB.php][16/Feb/23 13:21:45] + [16/Feb/23 13:21:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5cf3add84446566418][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:21:55] + [16/Feb/23 13:21:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5cf3d0834233623400][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:21:55] + [16/Feb/23 13:21:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5f7f4615c305885607][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5f7f6e5e4018552512][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5f7f9147c456841656][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:32:47] +[>>][56cc5f7f92034581097800][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:32:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5f7fc509c327161269][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fb54bf1c403500807][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:33:41] + [16/Feb/23 13:33:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fb5b9cec023486476][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:33:41] + [16/Feb/23 13:33:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fb85a594574896606][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:44] + [16/Feb/23 13:33:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fb9d69dc642664977][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:45] + [16/Feb/23 13:33:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fbf4133c775572369][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:51] + [16/Feb/23 13:33:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fbf63dec947919519][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:51] + [16/Feb/23 13:33:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fc17090c159531159][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:53] + [16/Feb/23 13:33:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fd1c4cb4444736920][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:09] + [16/Feb/23 13:34:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fd1e061c866664134][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:34:09] + [16/Feb/23 13:34:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fd5acde4143473069][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:13] + [16/Feb/23 13:34:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fd6f0fbc173292286][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:14] + [16/Feb/23 13:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fd726974417801537][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:15] +[>>][56cc5fd726d5c269442393][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:15] + [16/Feb/23 13:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fdb63dec232769586][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:34:19] + [16/Feb/23 13:34:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fdcdf67c179141206][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:20] + [16/Feb/23 13:34:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fdd1159c927661847][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:21] +[>>][56cc5fdd13cac759119177][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:21] + [16/Feb/23 13:34:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:34:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5fee9df9c071231114][DEFAULT][/lib/usermanagement/userInfo.php][16/Feb/23 13:34:38] + [16/Feb/23 13:34:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ff1c7b94056833274][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:41] + [16/Feb/23 13:34:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ff1e96a4506709649][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:41] +[>>][56cc5ff1ea25c066613581][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:41] + [16/Feb/23 13:34:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:34:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ff837ecc235623097][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:34:48] + [16/Feb/23 13:34:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ff954bbc051775572][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:49] + [16/Feb/23 13:34:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ff9762e4442817130][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:49] +[>>][56cc5ff977e3c208566806][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:49] + [16/Feb/23 13:34:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:34:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ffa54004554414288][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/23 13:34:50] + [16/Feb/23 13:34:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ffb6267c914173743][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:51] + [16/Feb/23 13:34:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc5ffb8706c346864932][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:51] +] + [16/Feb/23 13:34:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:34:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60046361c856220380][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:35:00] + [16/Feb/23 13:35:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60059b88c912879173][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:01] + [16/Feb/23 13:35:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6005c44e4097591262][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:01] +[>>][56cc6005c5484562546424][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:01] + [16/Feb/23 13:35:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:35:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc600a455a4570696775][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:35:06] + [16/Feb/23 13:35:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc600a641d4503626877][DEFAULT][/lib/testcases/archiveData.php][16/Feb/23 13:35:06] +[>>][56cc600a65174711343985][DEFAULT][/lib/testcases/listTestCases.php][16/Feb/23 13:35:06] + [16/Feb/23 13:35:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:35:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc600af2344496714928][DEFAULT][/lib/ajax/gettprojectnodes.php][16/Feb/23 13:35:06] + [16/Feb/23 13:35:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc600c908c4071822085][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:35:08] + [16/Feb/23 13:35:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc600fd0c1c534451869][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:11] + [16/Feb/23 13:35:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60126d644937200319][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:14] + [16/Feb/23 13:35:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc602c0f274971346356][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:40] + [16/Feb/23 13:35:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc602c2d6d4510277674][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:40] + [16/Feb/23 13:35:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc602ddbfcc361039035][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:41] + [16/Feb/23 13:35:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc602e0ee8c482549919][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:42] +[>>][56cc602e10dcc694735773][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:42] + [16/Feb/23 13:35:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:35:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6038b087c639669636][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:35:52] + [16/Feb/23 13:35:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc609cf178c667005073][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:37:32] + [16/Feb/23 13:37:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc609d232c4621154179][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:37:33] +[>>][56cc609d236ac308228491][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:37:33] + [16/Feb/23 13:37:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:37:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc609f5538c007705606][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:37:35] + [16/Feb/23 13:37:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60d70795c660209767][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:31] + [16/Feb/23 13:38:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60d7288b4880526851][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:31] + [16/Feb/23 13:38:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:38:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60d8c1604687764977][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:38:32] + [16/Feb/23 13:38:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60da3b194728121656][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:34] + [16/Feb/23 13:38:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f1e6f94176794061][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:57] + [16/Feb/23 13:38:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f3c8b34422530083][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:59] + [16/Feb/23 13:38:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f3e9a8c911388943][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:38:59] +[>>][56cc60f3eaa2c987130386][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:59] + [16/Feb/23 13:39:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:39:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f5280e4501442323][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:39:01] + [16/Feb/23 13:39:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f546544868008976][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:01] +[>>][56cc60f546544434511024][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:01] + [16/Feb/23 13:39:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:39:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f597df4001762833][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:01] + [16/Feb/23 13:39:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f6989ac321655404][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:02] + [16/Feb/23 13:39:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc60f80795c445846104][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:04] + [16/Feb/23 13:39:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6104cdd3c046974143][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:16] + [16/Feb/23 13:39:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6104e7764254850377][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:16] + [16/Feb/23 13:39:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc610540b6c563922310][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:17] + [16/Feb/23 13:39:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61059629c194101518][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17] + [16/Feb/23 13:39:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6105bb45c877127913][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17] + [16/Feb/23 13:39:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc610660b24614238676][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:39:18] + [16/Feb/23 13:39:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61094ea14472223346][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:21] + [16/Feb/23 13:39:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61137b8d4086385787][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:31] + [16/Feb/23 13:39:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6113985c4762678634][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:31] + [16/Feb/23 13:39:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6113c0664570350318][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:39:31] + [16/Feb/23 13:39:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6114134dc391766983][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:32] + [16/Feb/23 13:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61145150c133602777][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32] + [16/Feb/23 13:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc611469f94158086504][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32] + [16/Feb/23 13:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6167065d4665147379][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:55] + [16/Feb/23 13:40:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616ab3b44176847253][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:40:58] + [16/Feb/23 13:40:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616ad0c1c319935998][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:58] + [16/Feb/23 13:40:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616d518f4318644942][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:01] + [16/Feb/23 13:41:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616d7c0a4586952472][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:01] + [16/Feb/23 13:41:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616dc298c161764563][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:01] + [16/Feb/23 13:41:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616e10214164088068][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02] + [16/Feb/23 13:41:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc616e3d4bc758856378][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02] + [16/Feb/23 13:41:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc617d12924434613770][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:17] + [16/Feb/23 13:41:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6183d0834767458490][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:41:23] + [16/Feb/23 13:41:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6183ee8ac517221357][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:23] + [16/Feb/23 13:41:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6187d7d64457790710][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:27] + [16/Feb/23 13:41:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61881159c334932670][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:28] + [16/Feb/23 13:41:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc618884574607035030][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:28] + [16/Feb/23 13:41:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc618905e04098089099][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29] + [16/Feb/23 13:41:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61892dea4957239400][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29] + [16/Feb/23 13:41:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61d84e244050529542][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:42:48] + [16/Feb/23 13:42:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61dab2ba4492425197][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:42:50] + [16/Feb/23 13:42:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61fa382b4397331569][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61fa595f4608169575][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61fa82e04045660577][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61faf07ec548021248][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61fb75344567846290][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23] + [16/Feb/23 13:43:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc61fb9917c717736351][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23] + [16/Feb/23 13:43:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6391c0664645829704][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:09] + [16/Feb/23 13:50:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc639207d44503897386][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:10] +[>>][56cc63921159c787552206][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:10] + [16/Feb/23 13:50:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:50:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6394094b4505018944][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:12] + [16/Feb/23 13:50:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63942ee44493674652][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:12] +[>>][56cc63942f9fc616197092][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:12] + [16/Feb/23 13:50:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:50:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6394aaabc205554856][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12] + [16/Feb/23 13:50:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6394ddb24621148962][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12] + [16/Feb/23 13:50:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc639605634847874552][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:14] + [16/Feb/23 13:50:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63987478c963427016][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:16] + [16/Feb/23 13:50:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63a34a3c4037470616][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:50:27] + [16/Feb/23 13:50:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63a36a37c184596940][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:27] + [16/Feb/23 13:50:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63bc77e3c817519870][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:52] + [16/Feb/23 13:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63bca4cfc176098016][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:52] +[>>][56cc63bca8b7c198492518][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:52] + [16/Feb/23 13:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63be9a504009544605][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:54] + [16/Feb/23 13:50:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63bebb45c355193504][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:54] +[>>][56cc63bebc3fc564589659][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:54] + [16/Feb/23 13:50:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:50:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63bf43e34596480562][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55] + [16/Feb/23 13:50:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63bf7766c825259371][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55] + [16/Feb/23 13:50:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63c046d14962342403][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:56] + [16/Feb/23 13:50:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63c0ed13c723916414][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:50:56] + [16/Feb/23 13:50:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63c2c25a4148717576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:58] + [16/Feb/23 13:50:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63c8d3ee4928063393][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:04] + [16/Feb/23 13:51:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63c902f24952805747][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:05] + [16/Feb/23 13:51:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63d972464850304846][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:21] + [16/Feb/23 13:51:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63d9a164c518867078][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:21] +[>>][56cc63d9a164c326906455][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:21] + [16/Feb/23 13:51:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:51:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63db61ac4276112863][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:23] + [16/Feb/23 13:51:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63db8977c616640540][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:23] +[>>][56cc63db8aeec002472821][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:23] + [16/Feb/23 13:51:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:51:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63dc0db04931062987][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24] + [16/Feb/23 13:51:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63dc33c64296670675][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24] + [16/Feb/23 13:51:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63dd4b74c558822974][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:25] + [16/Feb/23 13:51:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63dfeec94492226015][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:27] + [16/Feb/23 13:51:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63e56a764332668381][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:33] + [16/Feb/23 13:51:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63e58b6bc506320220][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:33] + [16/Feb/23 13:51:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63f85826c005924871][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:52] + [16/Feb/23 13:51:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63f88495c909559654][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:52] +[>>][56cc63f8858fc019514639][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:52] + [16/Feb/23 13:51:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:51:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63faa1e1c789794088][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:54] + [16/Feb/23 13:51:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63fac44e4418685591][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:54] + [16/Feb/23 13:51:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:51:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63fb48484899250205][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55] + [16/Feb/23 13:51:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63fb7a164453160438][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55] + [16/Feb/23 13:51:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63fc62294056677511][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:56] + [16/Feb/23 13:51:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc63fe37314288674777][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:58] + [16/Feb/23 13:51:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc640314864541328791][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:03] + [16/Feb/23 13:52:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc640335f8c836902414][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:03] + [16/Feb/23 13:52:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6428cecdc720112313][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:40] + [16/Feb/23 13:52:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64290bfac433801129][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:41] +[>>][56cc64290e6bc642654137][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:41] + [16/Feb/23 13:52:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:52:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc642b4133c188182082][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:52:43] + [16/Feb/23 13:52:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc642b63dec445166289][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:52:43] + + [16/Feb/23 13:52:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:52:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc642bdeeac915381744][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:43] + [16/Feb/23 13:52:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc642c11984996588148][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44] + [16/Feb/23 13:52:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc642dc48cc306492157][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:52:45] + [16/Feb/23 13:52:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6430d0c1c155551145][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:48] + [16/Feb/23 13:52:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6436762e4573885291][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:54] + [16/Feb/23 13:52:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64369629c883444794][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:54] + [16/Feb/23 13:52:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6439beb0c600459376][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:57] + [16/Feb/23 13:52:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6439eb1fc012974139][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:57] +[>>][56cc6439ed524912024381][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:57] + [16/Feb/23 13:52:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:52:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6457e92bc887205664][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:53:27] + [16/Feb/23 13:53:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6458182fc451533150][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:28] + + [16/Feb/23 13:53:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:53:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64589eb54376123828][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28] + [16/Feb/23 13:53:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6458c4cb4969606039][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28] + [16/Feb/23 13:53:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc645a065d4071724806][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:53:30] + [16/Feb/23 13:53:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc645aa6c3c206796838][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:53:30] + [16/Feb/23 13:53:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc645c795ac724492879][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:32] + [16/Feb/23 13:53:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64680cf4c994779782][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64682ea5c743573865][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64685b14c817134450][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6468cbdfc350879884][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64694e244960952066][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45] + [16/Feb/23 13:53:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc646974f5c098244094][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45] + [16/Feb/23 13:53:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64bf572cc351966468][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:11] + [16/Feb/23 13:55:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64bf82e04620469726][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:11] +[>>][56cc64bf864b4037651971][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:11] + [16/Feb/23 13:55:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:55:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64c21159c784692490][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:14] + [16/Feb/23 13:55:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64c23675c609023708][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:14] +[>>][56cc64c237ae4342981631][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:14] + [16/Feb/23 13:55:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:55:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64c2b3f2c834272244][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14] + [16/Feb/23 13:55:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64c2e543c849565752][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14] + [16/Feb/23 13:55:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64c5c1dd4918979895][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:17] + [16/Feb/23 13:55:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d08224c901834384][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:28] + [16/Feb/23 13:55:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d0aaea4981675402][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:28] +[>>][56cc64d0ab674355725276][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:28] + [16/Feb/23 13:55:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d27284c429048719][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:30] + [16/Feb/23 13:55:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d2952fc935842893][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:30] +[>>][56cc64d297a0c620909811][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:30] + [16/Feb/23 13:55:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 13:55:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d31f05c803968763][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31] + [16/Feb/23 13:55:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d34421c800560419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31] + [16/Feb/23 13:55:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc64d4b181c805065696][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:32] + [16/Feb/23 13:55:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660b3ec2c866438554][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:00:43] + [16/Feb/23 14:00:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660b7090c733783928][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:00:43] +[>>][56cc660b70cf4838170300][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:00:43] + [16/Feb/23 14:00:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 14:00:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660d8495c200340898][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:00:45] + [16/Feb/23 14:00:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660da7fc4039443019][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:45] +[>>][56cc660da9f04039759338][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:00:45] + [16/Feb/23 14:00:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 14:00:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660e3210c024909377][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46] + [16/Feb/23 14:00:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660e5632c678072383][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46] + [16/Feb/23 14:00:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc660fa7bdc936713942][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:00:47] + [16/Feb/23 14:00:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6612357bc864916995][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:50] + [16/Feb/23 14:00:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661b1f05c606012085][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:00:59] + [16/Feb/23 14:00:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661b3c904669147411][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:59] + [16/Feb/23 14:00:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661b6c2bc772503070][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:00:59] + [16/Feb/23 14:00:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661be5054433502121][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:59] + [16/Feb/23 14:01:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661c65d2c223131365][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00] + [16/Feb/23 14:01:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc661c8a334408194359][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00] + [16/Feb/23 14:01:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a131af9174171433][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:03:13] + [16/Feb/23 14:03:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a16a996672472956][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:03:13] +[>>][56cc66a17131b593107414][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:03:13] + [16/Feb/23 14:03:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 14:03:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a36c8d9676908738][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:03:15] + [16/Feb/23 14:03:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a395d56612936707][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:03:15] +[>>][56cc66a399fc6110438397][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:03:15] + [16/Feb/23 14:03:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/23 14:03:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a41ffa0796866395][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16] + [16/Feb/23 14:03:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a4518fe048790766][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16] + [16/Feb/23 14:03:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a59c6db400980031][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:03:17] + [16/Feb/23 14:03:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66a73c305436374591][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:19] + [16/Feb/23 14:03:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66ae47ca7195833275][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:26] + [16/Feb/23 14:03:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66b32d884727207703][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:31] + [16/Feb/23 14:03:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66df7807a813031277][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:15] + [16/Feb/23 14:04:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66e882691064490416][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:24] + [16/Feb/23 14:04:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66eb774bd919317237][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:27] + [16/Feb/23 14:04:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66ec1c4ef133521260][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:04:28] + [16/Feb/23 14:04:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66f55f9a2101103619][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:37] + [16/Feb/23 14:04:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66fc56ee3099884083][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:44] + [16/Feb/23 14:04:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc66fe6af5b214959428][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:46] + [16/Feb/23 14:04:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67ad4645b242652123][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:07:41] + [16/Feb/23 14:07:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67c355056121649339][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:08:03] + [16/Feb/23 14:08:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67c46c831922322156][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:08:04] + [16/Feb/23 14:08:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67c4dfc50309170236][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:04] + [16/Feb/23 14:08:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67c51235f022653877][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:05] + [16/Feb/23 14:08:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67f7b515b164590797][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:08:55] + [16/Feb/23 14:08:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc67fa3fc6a333201456][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:08:58] + [16/Feb/23 14:08:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc68001b70c504320648][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:04] + [16/Feb/23 14:09:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc68064d8c5209303483][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:10] + [16/Feb/23 14:09:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc680b27b2e981518794][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:09:15] + [16/Feb/23 14:09:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc680b47718250944666][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:15] + [16/Feb/23 14:09:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6818855ea566132500][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:28] + [16/Feb/23 14:09:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc68194e3b5183918944][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:29] + [16/Feb/23 14:09:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc6819c0c1b937371486][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:09:29] + [16/Feb/23 14:09:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc681a4b59b952302715][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30] + [16/Feb/23 14:09:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cc681a70391482731820][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30] + [16/Feb/23 14:09:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67aa1ad92991006288][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:19:54] + [16/Feb/24 08:19:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67aa53c5a176669152][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:19:54] + [16/Feb/24 08:19:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67b1cd2ee846022482][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01] + [16/Feb/24 08:20:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67b209de9710693964][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:02] + [16/Feb/24 08:20:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67b22f2a1685666594][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:02] +[>>][56cd67b22fe68088683541][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:02] + [16/Feb/24 08:20:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:20:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67cdf3637262239794][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/24 08:20:29] + [16/Feb/24 08:20:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67d41efd5725537455][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:36] + [16/Feb/24 08:20:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd67d4436e9460641643][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:36] +[>>][56cd67d444a7a905231720][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:36] + [16/Feb/24 08:20:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:20:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6809bd888353563010][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:21:29] + [16/Feb/24 08:21:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6809de4e9362115862][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:21:29] +[>>][56cd6809e0822571479696][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:21:29] + [16/Feb/24 08:21:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:21:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd680a529a2534181816][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30] + [16/Feb/24 08:21:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd680a7610f386781677][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30] + [16/Feb/24 08:21:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68116af4f148037690][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:37] + [16/Feb/24 08:21:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd681316b8c786160000][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:39] + [16/Feb/24 08:21:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd688f7458c257018169][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:43] + [16/Feb/24 08:23:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6896224f2899204740][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:23:50] + [16/Feb/24 08:23:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd689648b54468933673][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:50] + [16/Feb/24 08:23:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd689f0d8fc412075841][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:59] + [16/Feb/24 08:23:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd689fb808b814558852][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:23:59] + [16/Feb/24 08:23:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68a015954669754197][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:24:00] + [16/Feb/24 08:24:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68a060e9e761416944][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00] + [16/Feb/24 08:24:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68a08599c048838839][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00] + [16/Feb/24 08:24:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68d42518e907459762][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:24:52] + [16/Feb/24 08:24:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68d4cd5e4355185423][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:24:52] + [16/Feb/24 08:24:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68ee5e03d327642150][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/24 08:25:18] + [16/Feb/24 08:25:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68f07e333517893562][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/24 08:25:20] + [16/Feb/24 08:25:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68f359716595644664][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:23] + [16/Feb/24 08:25:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68f37e558157661259][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:23] +[>>][56cd68f37fccc490938493][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:23] + [16/Feb/24 08:25:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:25:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68f8981bb632782724][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 08:25:28] + [16/Feb/24 08:25:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd68f8a9f16323758757][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 08:25:28][16/Feb/24 08:25:28][took 0.012009 secs] +[>>][56cd68f8c02ce810350740][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:28] + [16/Feb/24 08:25:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd68f8c02ce810350740][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:28][16/Feb/24 08:25:28][took 0.070049 secs] +[>>][56cd68f8d1858775011258][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:28] + [16/Feb/24 08:25:28][L18N][][GUI] + string 'login' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:28][L18N][][GUI] + string 'demo_usage' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:28][L18N][][GUI] + string 'new_style_login' is not localized for locale 'de_DE' - using en_GB +[<<][56cd68f8d1858775011258][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:28][16/Feb/24 08:25:28][took 0.031022 secs] +[>>][56cd68fe391e8914989025][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34] + [16/Feb/24 08:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd68fe391e8914989025][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.061043 secs] +[>>][56cd68fe4882c546815711][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34] +[<<][56cd68fe4882c546815711][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.007005 secs] +[>>][56cd68fe4a772102999367][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34] +[>>][56cd68fe5dc41477486191][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:34] + [16/Feb/24 08:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd68fe80b3d094001006][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:34] +[>>][56cd68fe816f7592350174][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:34] + [16/Feb/24 08:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd69011a1da995550044][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:25:37] + [16/Feb/24 08:25:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd69013bd4a143281494][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:25:37] +[>>][56cd69013bd4a203882259][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:25:37] + [16/Feb/24 08:25:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd69018d6e4578870274][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37] + [16/Feb/24 08:25:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6901b213d246850456][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37] + [16/Feb/24 08:25:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6903676a6817660661][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:39] + [16/Feb/24 08:25:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd690a506cd556937926][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:46] + [16/Feb/24 08:25:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd691059063557993357][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:25:52] + [16/Feb/24 08:25:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd691a3f9d5875686159][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:26:02] + [16/Feb/24 08:26:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd691a64fe8674902959][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:02] + [16/Feb/24 08:26:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6925b21f4115239802][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:13] + [16/Feb/24 08:26:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd69272b9a9675364405][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:26:15] + [16/Feb/24 08:26:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd692785c14668927684][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:26:15] + [16/Feb/24 08:26:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6927dbff3880754386][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:15] + [16/Feb/24 08:26:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd69280b480952391000][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:16] + [16/Feb/24 08:26:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4cabd95057349687][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:35:24] + [16/Feb/24 08:35:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4cd2ea5007332561][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:35:24] +[>>][56cd6b4cd4de6000382143][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:35:24] + [16/Feb/24 08:35:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:35:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4ec9ee1743696147][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:35:26] + [16/Feb/24 08:35:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4eecd87538127665][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:26] +[>>][56cd6b4eecd87665316949][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:35:26] + [16/Feb/24 08:35:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:35:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4f4c742347282042][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27] + [16/Feb/24 08:35:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b4f70d59298603266][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27] + [16/Feb/24 08:35:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b508c348769048791][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:28] + [16/Feb/24 08:35:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b55031b4203754300][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:33] + [16/Feb/24 08:35:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b5d349f8527025880][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:35:41] + [16/Feb/24 08:35:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b5d574b6015338931][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:41] + [16/Feb/24 08:35:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b61566a6534211903][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:45] + [16/Feb/24 08:35:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b62a83c3644129936][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:46] + [16/Feb/24 08:35:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b62f2379878515719][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:46] + [16/Feb/24 08:35:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b633ec7c656246539][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47] + [16/Feb/24 08:35:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6b6367114101002614][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47] + [16/Feb/24 08:35:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6bff9afa0545332890][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:38:23] + [16/Feb/24 08:38:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6bffbf99f921595240][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:38:23] +[>>][56cd6bffbfd87667918510][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:38:23] + [16/Feb/24 08:38:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c0161a59282195597][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:38:25] + [16/Feb/24 08:38:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c017db9c296784685][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:25] +[>>][56cd6c017fec5257856440][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:38:25] + [16/Feb/24 08:38:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 08:38:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c01d88e1550790835][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:25] + [16/Feb/24 08:38:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c0209870162431286][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:26] + [16/Feb/24 08:38:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c0524b40778228137][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:29] + [16/Feb/24 08:38:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c07aef30764990784][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:31] + [16/Feb/24 08:38:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c1097bab126211453][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:38:40] + [16/Feb/24 08:38:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c10b63ff261006270][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:40] + [16/Feb/24 08:38:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c13248e7587705173][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:43] + [16/Feb/24 08:38:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c147f2a8705090853][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:44] + [16/Feb/24 08:38:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c14d1f02542064231][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:44] + [16/Feb/24 08:38:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c151dc4d672696642][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45] + [16/Feb/24 08:38:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd6c1542a34635137380][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45] + [16/Feb/24 08:38:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd71236f511992599649][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:19] + [16/Feb/24 09:00:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712e77279355432099][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:00:30] + [16/Feb/24 09:00:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712e9241c482112034][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:30] + [16/Feb/24 09:00:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712ebdf66693485847][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:00:30] + [16/Feb/24 09:00:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712f49c3a649071093][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:00:31] + [16/Feb/24 09:00:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712fc8f96529183334][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31] + [16/Feb/24 09:00:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd712fed1c5664680413][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31] + [16/Feb/24 09:00:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd731643eac931524856][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:08:38] + [16/Feb/24 09:08:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73166d2d4634943254][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:08:38] + [16/Feb/24 09:08:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:08:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73185119c937042539][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:08:40] + [16/Feb/24 09:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73186e274058032098][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:08:40] +[>>][56cd73187059c368115795][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:08:40] + [16/Feb/24 09:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7318c5114348446986][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40] + [16/Feb/24 09:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7318f27a4039282191][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40] + [16/Feb/24 09:08:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd731b079d4699014467][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:08:43] + [16/Feb/24 09:08:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732c724dc460362988][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:00] + [16/Feb/24 09:09:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732c999c4345093624][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:00] +[>>][56cd732c9a194682821531][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:00] + [16/Feb/24 09:09:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:09:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732e3b5f4416893317][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:02] + [16/Feb/24 09:09:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732e586cc559383481][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:02] +[>>][56cd732e5966c602405879][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:02] + [16/Feb/24 09:09:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:09:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732ea786c604271297][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02] + [16/Feb/24 09:09:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd732ed1c34269488752][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02] + [16/Feb/24 09:09:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd733027d74762204319][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:04] + [16/Feb/24 09:09:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7335ae5cc307958786][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:09] + [16/Feb/24 09:09:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7338d472c774889898][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:12] + [16/Feb/24 09:09:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73390088c274854229][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7339275a4416989451][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73396a00c237110218][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7339a68cc558161117][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7339cb2bc659390841][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73420bc3c121850840][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:22] + [16/Feb/24 09:09:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73484e2bc972084209][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:28] + [16/Feb/24 09:09:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73486bb64672375257][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:28] + [16/Feb/24 09:09:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd734fb7654848818545][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:35] + [16/Feb/24 09:09:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73648f5b4278449465][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:56] + [16/Feb/24 09:09:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7364b0124532618642][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:56] +[>>][56cd7364b0cdc280899113][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:56] + [16/Feb/24 09:09:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:09:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73660ac9c680485136][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:58] + [16/Feb/24 09:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd736628d14004662657][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:58] +[>>][56cd7366290fc075489548][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:58] + [16/Feb/24 09:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd736676f14691316398][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58] + [16/Feb/24 09:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73669c0d4021481904][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58] + [16/Feb/24 09:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7367ad244319053555][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:59] + [16/Feb/24 09:09:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73681c1f4886311984][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:10:00] + [16/Feb/24 09:10:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7369972b4208083453][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:01] + [16/Feb/24 09:10:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7371655d4398400598][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:10:09] + [16/Feb/24 09:10:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd737189024402018646][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:09] + [16/Feb/24 09:10:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd737542b24267411585][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:13] + [16/Feb/24 09:10:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73769110c846513735][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:10:14] + [16/Feb/24 09:10:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7376d666c347993139][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:10:14] + [16/Feb/24 09:10:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73771f8a4378535144][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15] + [16/Feb/24 09:10:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd73774aff4669430085][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15] + [16/Feb/24 09:10:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7c5425cb5910969469][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:48:04] + [16/Feb/24 09:48:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cad9b39d421029976][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:49:33] + [16/Feb/24 09:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cadbeded059853167][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:49:33] +[>>][56cd7cadbf1d5837070180][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:49:33] + [16/Feb/24 09:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cafa480d983191300][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:49:35] + [16/Feb/24 09:49:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cafc6705428331550][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:49:35] +[>>][56cd7cafc6ed5853388190][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:49:35] + [16/Feb/24 09:49:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:49:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cb024545800421994][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36] + [16/Feb/24 09:49:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cb048b4d564165312][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36] + [16/Feb/24 09:49:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cb26ecad031640727][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:49:38] + [16/Feb/24 09:49:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cb2d8fe5783887443][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:49:38] + [16/Feb/24 09:49:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cb485025702414124][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:40] + [16/Feb/24 09:49:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cc78b99d349571457][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:49:59] + [16/Feb/24 09:49:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cc7a9245957955624][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:59] + [16/Feb/24 09:49:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cce3cfcd695680171][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:50:06] + [16/Feb/24 09:50:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ccf8c16d192189471][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:50:07] + [16/Feb/24 09:50:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ccfdb30d881160096][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:50:07] + [16/Feb/24 09:50:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cd02a305996050761][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08] + [16/Feb/24 09:50:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7cd04ecf5067809470][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08] + [16/Feb/24 09:50:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7d0fd0b15875419120][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:51:11] + [16/Feb/24 09:51:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7d202398d225924683][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:51:28] + [16/Feb/24 09:51:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7d21644b5330955979][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:51:29] + [16/Feb/24 09:51:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e4d32fa5336104623][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:56:29] + [16/Feb/24 09:56:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e532aad5994439900][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:56:35] + [16/Feb/24 09:56:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e78a01bd834779914][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:57:12] + [16/Feb/24 09:57:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e79e2455410730972][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:57:13] + [16/Feb/24 09:57:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e7a44115910903172][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14] + [16/Feb/24 09:57:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e7a68b05813586610][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14] + [16/Feb/24 09:57:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7e7bdab3d800963138][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:57:15] + [16/Feb/24 09:57:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ec969ff9895162924][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:33] + [16/Feb/24 09:58:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ec98e61f774776124][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:33] +[>>][56cd7ec991cd2704046336][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:33] + [16/Feb/24 09:58:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:58:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecb8283d289815369][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:58:35] + [16/Feb/24 09:58:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecb9f92d058787124][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:58:35] +[>>][56cd7ecb9f92d243863490][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:58:35] + [16/Feb/24 09:58:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecc0ae93545276657][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36] + [16/Feb/24 09:58:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecc2e901634417112][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36] + [16/Feb/24 09:58:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecd94ed4139713985][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:37] + [16/Feb/24 09:58:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ecdb7d89363021131][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:37] +[>>][56cd7ecdb9ccb514214359][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:37] + [16/Feb/24 09:58:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:58:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ed17560a719438616][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 09:58:41] + [16/Feb/24 09:58:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd7ed185bd0349046925][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 09:58:41][16/Feb/24 09:58:41][took 0.011002 secs] +[>>][56cd7ed196966850028811][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:41] + [16/Feb/24 09:58:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd7ed196966850028811][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:41][16/Feb/24 09:58:41][took 0.080016 secs] +[>>][56cd7ed1aa5de697054797][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:41] + [16/Feb/24 09:58:41][L18N][][GUI] + string 'login' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 09:58:41][L18N][][GUI] + string 'demo_usage' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 09:58:41][L18N][][GUI] + string 'new_style_login' is not localized for locale 'de_DE' - using en_GB +[<<][56cd7ed1aa5de697054797][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:41][16/Feb/24 09:58:41][took 0.05201 secs] +[>>][56cd7ed5f19f0249319658][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:45] + [16/Feb/24 09:58:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[<<][56cd7ed5f19f0249319658][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:45][16/Feb/24 09:58:46][took 0.063013 secs] +[>>][56cd7ed60d5a5831082189][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:46] +[<<][56cd7ed60d5a5831082189][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.012002 secs] +[>>][56cd7ed610487645217416][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:46] +[>>][56cd7ed620e35290337673][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:46] + [16/Feb/24 09:58:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ed6448a2007411264][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:46] +[>>][56cd7ed645073426039930][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:46] + [16/Feb/24 09:58:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ed805646850635448][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:58:48] + [16/Feb/24 09:58:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7edbaa9c6914187208][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 09:58:51] + [16/Feb/24 09:58:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee4d1e05937660361][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:59:00] + [16/Feb/24 09:59:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee6f040e997878962][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:59:02] + [16/Feb/24 09:59:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee71d141064683309][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:59:03] +[>>][56cd7ee721795926650466][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:59:03] + [16/Feb/24 09:59:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:59:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee8c1f48932167842][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:59:04] + [16/Feb/24 09:59:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee8df038631964386][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:59:04] +[>>][56cd7ee8df808265520959][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:04] + [16/Feb/24 09:59:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 09:59:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee944bc2120123282][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05] + [16/Feb/24 09:59:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ee9699b8173686563][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05] + [16/Feb/24 09:59:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7eeadcab6177836211][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:06] + [16/Feb/24 09:59:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7eeb74348830931529][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:59:07] + [16/Feb/24 09:59:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7ef0e40b4904823142][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:12] + [16/Feb/24 09:59:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7efb79dec277953667][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:59:23] + [16/Feb/24 09:59:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7efb97e7d517534108][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:23] + [16/Feb/24 09:59:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7f0320a4b260395628][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:31] + [16/Feb/24 09:59:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7f040e60c677579755][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:32] + [16/Feb/24 09:59:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7f045a13a467844376][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:32] + [16/Feb/24 09:59:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7f04a0e44156338379][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32] + [16/Feb/24 09:59:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd7f04cd941649988872][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32] + [16/Feb/24 09:59:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8000e3d0a078550272][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:03:44] + [16/Feb/24 10:03:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd81539857c297970033][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:23] + [16/Feb/24 10:09:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8153bf68c194820129][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:23] +[>>][56cd8153c2955404663002][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:23] + [16/Feb/24 10:09:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:09:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd81595363f353650325][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 10:09:29] + [16/Feb/24 10:09:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd815bedfef287142119][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:31] + [16/Feb/24 10:09:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd815c1c09d571701226][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:32] +[>>][56cd815c1d03d844749379][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:32] + [16/Feb/24 10:09:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:09:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820a17409344141961][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:12:26] + [16/Feb/24 10:12:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820a3ae68572019518][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:12:26] +[>>][56cd820a3d579338893747][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:12:26] + [16/Feb/24 10:12:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:12:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820c75cb0001037498][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:12:28] + [16/Feb/24 10:12:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820c973e5021892073][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:28] +[>>][56cd820c973e5457763740][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:12:28] + [16/Feb/24 10:12:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:12:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820ce427d937018245][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:28] + [16/Feb/24 10:12:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820d1d2f7380145339][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:29] + [16/Feb/24 10:12:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820e1cf73350510965][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:30] + [16/Feb/24 10:12:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd820e99006077224419][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:12:30] + [16/Feb/24 10:12:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8211ac1ea439939271][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:33] + [16/Feb/24 10:12:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82148e292997876105][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:12:36] + [16/Feb/24 10:12:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8214b0580714034576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:36] + [16/Feb/24 10:12:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82172c145305850630][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:39] + [16/Feb/24 10:12:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8217597e8820469808][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:39] + [16/Feb/24 10:12:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8217a08bd612965687][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:39] + [16/Feb/24 10:12:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8217e23a0057697971][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:39] + [16/Feb/24 10:12:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82181332f128695026][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:40] + [16/Feb/24 10:12:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82a83458e770790035][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:04] + [16/Feb/24 10:15:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82ae335ee020946574][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:15:10] + [16/Feb/24 10:15:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82ae4c45e388943331][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:10] + [16/Feb/24 10:15:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82b0dc8f6795067268][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:12] + [16/Feb/24 10:15:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82b19ecae792096287][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:15:13] + [16/Feb/24 10:15:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82b1e3e26104930522][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:15:13] + [16/Feb/24 10:15:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82b23264e233873756][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14] + [16/Feb/24 10:15:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd82b25aebe832914729][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14] + [16/Feb/24 10:15:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd846e31e7e314599213][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:22:38] + [16/Feb/24 10:22:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84a139f66600506506][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:23:29] + [16/Feb/24 10:23:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84a15d5ce977254467][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:29] + [16/Feb/24 10:23:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84b170e4e810981340][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:45] + [16/Feb/24 10:23:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84b237086309350761][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:23:46] + [16/Feb/24 10:23:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84b28d756244259016][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:23:46] + [16/Feb/24 10:23:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84b2d8e5e641254124][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:46] + [16/Feb/24 10:23:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd84b30960e751802812][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:47] + [16/Feb/24 10:23:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85119f866938197499][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:21] + [16/Feb/24 10:25:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8515535a6565374715][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:25:25] + [16/Feb/24 10:25:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8515750b6089161920][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:25] + [16/Feb/24 10:25:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd851e10f26741725137][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:34] + [16/Feb/24 10:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd851ec7136844504999][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:25:34] + [16/Feb/24 10:25:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd851f22866507769029][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:25:35] + [16/Feb/24 10:25:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd851f6991e412229081][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35] + [16/Feb/24 10:25:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd851f8f696908892339][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35] + [16/Feb/24 10:25:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd856db11a6740126381][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:53] + [16/Feb/24 10:26:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8572f0176537488894][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:26:58] + [16/Feb/24 10:26:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd857328626748215618][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:59] + [16/Feb/24 10:26:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85790fb9e735874614][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:27:05] + [16/Feb/24 10:27:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8579c5dae014425321][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:27:05] + [16/Feb/24 10:27:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd857a1a396699167635][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:27:06] + [16/Feb/24 10:27:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd857a63b5e560879419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06] + [16/Feb/24 10:27:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd857a944b6150451589][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06] + [16/Feb/24 10:27:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f179aee549858144][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:29:05] + [16/Feb/24 10:29:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f1a0fd6307658405][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:29:05] +[>>][56cd85f1a429e952173645][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:29:05] + [16/Feb/24 10:29:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:29:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f32341e271915553][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:29:07] + [16/Feb/24 10:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f3437be301801435][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:07] +[>>][56cd85f344f2e371598801][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:29:07] + [16/Feb/24 10:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f3a0bee740674473][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07] + [16/Feb/24 10:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f3c4e0e623556582][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07] + [16/Feb/24 10:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f4ae6ae933092337][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:08] + [16/Feb/24 10:29:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85f52247e566275217][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:29:09] + [16/Feb/24 10:29:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85fa66656237938805][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:14] + [16/Feb/24 10:29:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85fdd2cb6201282383][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:29:17] + [16/Feb/24 10:29:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd85fe0672e556712100][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:18] + [16/Feb/24 10:29:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86068eade277454930][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:26] + [16/Feb/24 10:29:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86075f50e767722212][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:27] + [16/Feb/24 10:29:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8607a429e593460814][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:27] + [16/Feb/24 10:29:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8607e49de255819662][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:27] + [16/Feb/24 10:29:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd860815576312091082][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28] + [16/Feb/24 10:29:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd866761e4e614120595][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:03] + [16/Feb/24 10:31:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd866a4527f470526210][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:31:06] + [16/Feb/24 10:31:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd866a67955861598628][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:06] + [16/Feb/24 10:31:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8672bf6f1720006504][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:14] + [16/Feb/24 10:31:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8673b2847498174380][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:31:15] + [16/Feb/24 10:31:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86740a8e7710223522][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:31:16] + [16/Feb/24 10:31:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86744a489708027979][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16] + [16/Feb/24 10:31:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd867477b2b396438462][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16] + [16/Feb/24 10:31:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86c237ad8937818253][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:34] + [16/Feb/24 10:32:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86c3e29e2992075607][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:35] + [16/Feb/24 10:32:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86c6aa49f768688974][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:32:38] + [16/Feb/24 10:32:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86c6d0227775018591][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:38] + [16/Feb/24 10:32:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86ca3bc7a433127714][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:42] + [16/Feb/24 10:32:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86cb03a57670634295][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:43] + [16/Feb/24 10:32:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86cb50506721303396][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:32:43] + [16/Feb/24 10:32:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86cb9df56130899100][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43] + [16/Feb/24 10:32:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd86cbc3125091890895][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43] + [16/Feb/24 10:32:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8b9b9094f153168572][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:53:15] + [16/Feb/24 10:53:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8b9dcf537161917222][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:17] + [16/Feb/24 10:53:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8ba1d4b27249671944][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:53:21] + [16/Feb/24 10:53:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8ba1f1bff406923615][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:21] + [16/Feb/24 10:53:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8ba7a499f530441553][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:27] + [16/Feb/24 10:53:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd2d6297530107294][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:10] + [16/Feb/24 10:54:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd30b47f401145426][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:11] +[>>][56cd8bd30d3bf190961499][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:11] + [16/Feb/24 10:54:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:54:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd4e878f010228337][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:12] + [16/Feb/24 10:54:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd5125c7144770524][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:13] +[>>][56cd8bd514cd7459124654][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:13] + [16/Feb/24 10:54:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:54:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd569467736402605][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13] + [16/Feb/24 10:54:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd58edf7624650333][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13] + [16/Feb/24 10:54:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd65020f743212459][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:14] + [16/Feb/24 10:54:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bd94fa3f779892143][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:17] + [16/Feb/24 10:54:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bde6dab7424392330][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:22] + [16/Feb/24 10:54:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bde8cacf989847583][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:22] + [16/Feb/24 10:54:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8be265db7570989750][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:26] + [16/Feb/24 10:54:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf3e54c7759747475][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:43] + [16/Feb/24 10:54:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf4148ef419179618][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:44] +[>>][56cd8bf416c17633052113][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:44] + [16/Feb/24 10:54:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:54:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf5a1ea7782305163][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:45] + [16/Feb/24 10:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf5bf367640027257][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:45] +[>>][56cd8bf5bfb37872195473][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:45] + [16/Feb/24 10:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf62140f672413110][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46] + [16/Feb/24 10:54:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf6469b7959763167][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46] + [16/Feb/24 10:54:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf722797538076611][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:47] + [16/Feb/24 10:54:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf7a034f617908426][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:54:47] + [16/Feb/24 10:54:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bf8a12ef104531816][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:48] + [16/Feb/24 10:54:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bfbbb0ff641841859][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:51] + [16/Feb/24 10:54:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8bfbd9947701206112][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:51] + [16/Feb/24 10:54:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c029ebdf651094738][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:58] + [16/Feb/24 10:54:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c0364647615484920][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:59] + [16/Feb/24 10:54:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c03ab6ff315479333][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:59] + [16/Feb/24 10:54:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c03ecddf722641570][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:59] + [16/Feb/24 10:55:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c042528f254785716][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00] + [16/Feb/24 10:55:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3966587453979230][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:55:53] + [16/Feb/24 10:55:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c398a3bf529183128][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:55:53] +[>>][56cd8c399094f923827235][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:55:53] + [16/Feb/24 10:55:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:55:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3b6bf5f510248688][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:55:55] + [16/Feb/24 10:55:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3b8b35f238063666][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:55:55] +[>>][56cd8c3b8bf17118434267][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:55:55] + [16/Feb/24 10:55:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 10:55:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3bedd7f534488968][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:55] + [16/Feb/24 10:55:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3c246d7962310688][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56] + [16/Feb/24 10:55:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3d04b07547860746][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:55:57] + [16/Feb/24 10:55:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3d75b9f551958964][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:55:57] + [16/Feb/24 10:55:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c3f0e35f195622399][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:55:59] + [16/Feb/24 10:55:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c5083e2f726493228][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:56:16] + [16/Feb/24 10:56:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c50a2a5f264710446][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:16] + [16/Feb/24 10:56:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c569ff67930179866][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:22] + [16/Feb/24 10:56:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c575a237332432027][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:56:23] + [16/Feb/24 10:56:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c57a3617467069242][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:56:23] + [16/Feb/24 10:56:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c57e5c97952849229][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:23] + [16/Feb/24 10:56:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c5816c17494315590][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24] + [16/Feb/24 10:56:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c8dc35cf545785464][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:17] + [16/Feb/24 10:57:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c8fbc487243620271][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:19] + [16/Feb/24 10:57:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c9301c27565140942][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:57:23] + [16/Feb/24 10:57:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c9323b1f416946494][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:23] + [16/Feb/24 10:57:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c95469b7093049412][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:25] + [16/Feb/24 10:57:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c95f23cf300370508][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:25] + [16/Feb/24 10:57:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c9643ebf124191194][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:57:26] + [16/Feb/24 10:57:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c9684dcf193937488][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26] + [16/Feb/24 10:57:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd8c96aa377119549425][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26] + [16/Feb/24 10:57:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99c18c1f2449722768][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:53:37] + [16/Feb/24 11:53:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99c1b5609794715415][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:53:37] +[>>][56cd99c1b7d18965335066][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:53:37] + [16/Feb/24 11:53:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 11:53:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99c38ada2236970373][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:53:39] + [16/Feb/24 11:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99c3a7a87918552860][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:53:39] +[>>][56cd99c3aa196895187703][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:53:39] + [16/Feb/24 11:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 11:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e1c7a31073619109][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:54:09] + [16/Feb/24 11:54:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e1eb85b178381303][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:54:09] +[>>][56cd99e1ecbe2478722205][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:54:09] + [16/Feb/24 11:54:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 11:54:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e3aa89d437796535][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:54:11] + [16/Feb/24 11:54:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e3c8139377074543][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:54:11] +[>>][56cd99e3c98a8145678490][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:11] + [16/Feb/24 11:54:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 11:54:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e426b0f780438133][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12] + [16/Feb/24 11:54:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e4491c9988932239][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12] + [16/Feb/24 11:54:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e54d3cb554515936][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:13] + [16/Feb/24 11:54:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99e8357c1607913680][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:16] + [16/Feb/24 11:54:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99ecdf4ab902318500][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:54:20] + [16/Feb/24 11:54:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99ed09aa7392735285][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:21] + [16/Feb/24 11:54:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99ef4cfe3333537499][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:23] + [16/Feb/24 11:54:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99f00a91b394050718][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:24] + [16/Feb/24 11:54:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99f052d3d656647985][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:24] + [16/Feb/24 11:54:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99f096b11512039696][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24] + [16/Feb/24 11:54:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd99f0ba553648160927][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24] + [16/Feb/24 11:54:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a2999f03633424743][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:21] + [16/Feb/24 11:55:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3072387819407972][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:28] + [16/Feb/24 11:55:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a30bd689085535905][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:28] + [16/Feb/24 11:55:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a311186b509252934][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29] + [16/Feb/24 11:55:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3134add887932111][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29] + [16/Feb/24 11:55:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a322f873112007742][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:30] + [16/Feb/24 11:55:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a38b101e693283594][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:36] + [16/Feb/24 11:55:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3c29e9d931378100][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:55:40] + [16/Feb/24 11:55:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3c50ba5688437557][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:40] + [16/Feb/24 11:55:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3e50ec5230603770][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:42] + [16/Feb/24 11:55:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3f08a3f615252897][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:43] + [16/Feb/24 11:55:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3f54128858745641][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:43] + [16/Feb/24 11:55:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3f9c54a484030401][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43] + [16/Feb/24 11:55:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9a3fc5579352779655][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43] + [16/Feb/24 11:55:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9acef0f72958747944][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:06] + [16/Feb/24 11:58:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad251b43210685874][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:58:10] + [16/Feb/24 11:58:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad2741fd331868983][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:10] + [16/Feb/24 11:58:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad4aa837033184158][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:12] + [16/Feb/24 11:58:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad5db4ff050046155][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:58:13] + [16/Feb/24 11:58:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad62f6e1016231291][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:58:14] + [16/Feb/24 11:58:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad674c25888059755][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14] + [16/Feb/24 11:58:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9ad699606307728674][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14] + [16/Feb/24 11:58:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c04b5ffd904078764][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:16] + [16/Feb/24 12:03:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c0a47675852837538][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:03:22] + [16/Feb/24 12:03:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c0a6a50d325307880][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:22] + [16/Feb/24 12:03:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c0d12ab5890556227][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:25] + [16/Feb/24 12:03:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c3219fe5546004224][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 12:04:02] + [16/Feb/24 12:04:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c323f58d774769429][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 12:04:02] +[>>][56cd9c3243bdd530737848][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 12:04:02] + [16/Feb/24 12:04:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 12:04:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c33e9835459096597][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 12:04:03] + [16/Feb/24 12:04:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c3417105120920103][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 12:04:04] +[>>][56cd9c3417105934715336][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:04] + [16/Feb/24 12:04:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 + [16/Feb/24 12:04:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c347aac5783533954][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04] + [16/Feb/24 12:04:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c349e8fd191735187][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04] + [16/Feb/24 12:04:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c35a7d6d930700433][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:05] + [16/Feb/24 12:04:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c3793165089854082][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:07] + [16/Feb/24 12:04:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c3b9066d880763999][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:04:11] + [16/Feb/24 12:04:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c3bb4c75715737089][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:11] + [16/Feb/24 12:04:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c42a65fd624538124][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:18] + [16/Feb/24 12:04:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c440ffbd811612796][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:20] + [16/Feb/24 12:04:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c445baad189770376][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:20] + [16/Feb/24 12:04:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c449fc85550350558][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20] + [16/Feb/24 12:04:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cd9c44c4675850873728][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20] + [16/Feb/24 12:04:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 diff --git a/logsuserlog1.log b/logsuserlog1.log new file mode 100644 index 0000000000..5405988225 --- /dev/null +++ b/logsuserlog1.log @@ -0,0 +1,2326 @@ +[<<][56cc5cb27207c472984440][DEFAULT][/testlinkPrefixTest/install/installCheck.php][16/Feb/23 13:20:50][16/Feb/23 13:20:50][took 0.06 secs] + [16/Feb/23 13:21:45][WARNING][][GUI] + E_WARNING +mysql_close() expects parameter 1 to be resource, boolean given - in C:\xampp\htdocs\testlinkPrefixTest\third_party\adodb\drivers\adodb-mysql.inc.php - Line 532 + [16/Feb/23 13:21:45][WARNING][][GUI] + E_WARNING +mysql_close() expects parameter 1 to be resource, boolean given - in C:\xampp\htdocs\testlinkPrefixTest\third_party\adodb\drivers\adodb-mysql.inc.php - Line 532 +[<<][56cc5ce9dac44335122973][DEFAULT][/testlinkPrefixTest/install/installNewDB.php][16/Feb/23 13:21:45][16/Feb/23 13:21:46][took 0.865 secs] +[<<][56cc5cf3add84446566418][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:21:55][16/Feb/23 13:21:55][took 0.069 secs] +[>>][56cc5cf3bf2dc337600255][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:21:55] +[<<][56cc5cf3bf2dc337600255][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:21:55][16/Feb/23 13:21:55][took 0.008 secs] +[<<][56cc5cf3d0834233623400][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:21:55][16/Feb/23 13:21:55][took 0.061 secs] +[>>][56cc5cf3dfa64174958174][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:21:55] +[<<][56cc5cf3dfa64174958174][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:21:55][16/Feb/23 13:21:55][took 0.014 secs] +[<<][56cc5f7f4615c305885607][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.072 secs] +[>>][56cc5f7f5826c085309167][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47] +[<<][56cc5f7f5826c085309167][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.012 secs] +[>>][56cc5f7f5b534606467383][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56cc5f7f5b534606467383][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.021 secs] +[<<][56cc5f7f6e5e4018552512][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.066 secs] +[>>][56cc5f7f7eb9c200530706][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:32:47] +[<<][56cc5f7f7eb9c200530706][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.007 secs] +[<<][56cc5f7f9147c456841656][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.071 secs] +[>>][56cc5f7fa31a4590565277][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:32:47] +[<<][56cc5f7fa31a4590565277][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.029 secs] +[<<][56cc5f7f92034581097800][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.123 secs] +[>>][56cc5f7fb0494086867429][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:32:47] + [16/Feb/23 13:32:47][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + No project found: Assume a new installation and redirect to create it +[<<][56cc5f7fb0494086867429][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.027 secs] +[<<][56cc5f7fc509c327161269][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.082 secs] +[>>][56cc5f7fd98bc848255262][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:32:47] +[<<][56cc5f7fd98bc848255262][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:32:47][16/Feb/23 13:32:47][took 0.035 secs] +[<<][56cc5fb54bf1c403500807][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:33:41][16/Feb/23 13:33:41][took 0.066 secs] +[>>][56cc5fb55c8bc880312145][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:33:41] + [16/Feb/23 13:33:41][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Test Project 'testlink' was created +[<<][56cc5fb55c8bc880312145][DEFAULT][/lib/project/projectEdit.php][16/Feb/23 13:33:41][16/Feb/23 13:33:41][took 0.049 secs] +[<<][56cc5fb5b9cec023486476][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:33:41][16/Feb/23 13:33:41][took 0.072 secs] +[>>][56cc5fb5cb62c784216938][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:33:41] +[<<][56cc5fb5cb62c784216938][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:33:41][16/Feb/23 13:33:41][took 0.027 secs] +[<<][56cc5fb85a594574896606][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:44][16/Feb/23 13:33:44][took 0.065 secs] +[>>][56cc5fb86a764397610274][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:44] +[<<][56cc5fb86a764397610274][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:44][16/Feb/23 13:33:44][took 0.13 secs] +[<<][56cc5fb9d69dc642664977][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:45][16/Feb/23 13:33:45][took 0.086 secs] +[>>][56cc5fb9ebdb4252880883][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:45] +[<<][56cc5fb9ebdb4252880883][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:45][16/Feb/23 13:33:46][took 0.153 secs] +[<<][56cc5fbf4133c775572369][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:51][16/Feb/23 13:33:51][took 0.075 secs] +[>>][56cc5fbf54004095032632][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:51] + [16/Feb/23 13:33:51][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + User 'admin' was saved +[<<][56cc5fbf54004095032632][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:51][16/Feb/23 13:33:51][took 0.034 secs] +[<<][56cc5fbf63dec947919519][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:51][16/Feb/23 13:33:51][took 0.069 secs] +[>>][56cc5fbf74b74222165061][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:51] +[<<][56cc5fbf74b74222165061][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:33:51][16/Feb/23 13:33:51][took 0.016 secs] +[<<][56cc5fc17090c159531159][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:53][16/Feb/23 13:33:53][took 0.076 secs] +[>>][56cc5fc1831ec207901349][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:53] +[<<][56cc5fc1831ec207901349][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:33:53][16/Feb/23 13:33:53][took 0.019 secs] +[<<][56cc5fd1c4cb4444736920][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:09][16/Feb/23 13:34:09][took 0.067 secs] +[>>][56cc5fd1d5a3c944237355][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:09] + [16/Feb/23 13:34:09][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + User 'lejo' was created +[<<][56cc5fd1d5a3c944237355][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:09][16/Feb/23 13:34:09][took 0.016 secs] +[<<][56cc5fd1e061c866664134][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:34:09][16/Feb/23 13:34:09][took 0.065 secs] +[>>][56cc5fd1f0bd4921088976][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:34:09] +[<<][56cc5fd1f0bd4921088976][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:34:09][16/Feb/23 13:34:10][took 0.014 secs] +[<<][56cc5fd5acde4143473069][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:13][16/Feb/23 13:34:13][took 0.08 secs] +[>>][56cc5fd5c0a4c171445592][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:13] +[<<][56cc5fd5c0a4c171445592][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/23 13:34:13][16/Feb/23 13:34:13][took 0.024 secs] +[<<][56cc5fd6f0fbc173292286][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:14][16/Feb/23 13:34:15][took 0.078 secs] +[>>][56cc5fd710214475502089][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:15] +[<<][56cc5fd710214475502089][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:15][16/Feb/23 13:34:15][took 0.007 secs] +[<<][56cc5fd726974417801537][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:15][16/Feb/23 13:34:15][took 0.076 secs] +[>>][56cc5fd739a24602292869][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:15] +[<<][56cc5fd739a24602292869][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:15][16/Feb/23 13:34:15][took 0.025 secs] +[<<][56cc5fd726d5c269442393][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:15][16/Feb/23 13:34:15][took 0.127 secs] +[>>][56cc5fd74615c888045523][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:15] +[<<][56cc5fd74615c888045523][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:15][16/Feb/23 13:34:15][took 0.041 secs] +[<<][56cc5fdb63dec232769586][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:34:19][16/Feb/23 13:34:19][took 0.078 secs] +[>>][56cc5fdb7766c099534755][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:34:19] + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 52 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 61 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/23 13:34:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cc5fdb7766c099534755][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:34:19][16/Feb/23 13:34:19][took 0.049 secs] +[<<][56cc5fdcdf67c179141206][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:20][16/Feb/23 13:34:21][took 0.087 secs] +[>>][56cc5fdd00bfc080667098][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:21] +[<<][56cc5fdd00bfc080667098][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:21][16/Feb/23 13:34:21][took 0.005 secs] +[<<][56cc5fdd1159c927661847][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:21][16/Feb/23 13:34:21][took 0.083 secs] +[>>][56cc5fdd259d4749433496][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:21] +[<<][56cc5fdd259d4749433496][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:21][16/Feb/23 13:34:21][took 0.025 secs] +[<<][56cc5fdd13cac759119177][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:21][16/Feb/23 13:34:21][took 0.12 secs] +[>>][56cc5fdd3116c296522661][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:21] +[<<][56cc5fdd3116c296522661][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:21][16/Feb/23 13:34:21][took 0.038 secs] +[<<][56cc5fee9df9c071231114][DEFAULT][/lib/usermanagement/userInfo.php][16/Feb/23 13:34:38][16/Feb/23 13:34:38][took 0.071 secs] +[>>][56cc5feeaf8dc080280247][DEFAULT][/lib/usermanagement/userInfo.php][16/Feb/23 13:34:38] +[<<][56cc5feeaf8dc080280247][DEFAULT][/lib/usermanagement/userInfo.php][16/Feb/23 13:34:38][16/Feb/23 13:34:38][took 0.277 secs] +[<<][56cc5ff1c7b94056833274][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:41][16/Feb/23 13:34:41][took 0.071 secs] +[>>][56cc5ff1d98bc100544493][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:41] +[<<][56cc5ff1d98bc100544493][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:41][16/Feb/23 13:34:41][took 0.005 secs] +[<<][56cc5ff1ea25c066613581][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:41][16/Feb/23 13:34:42][took 0.074 secs] +[>>][56cc5ff208514318530543][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:42] +[<<][56cc5ff208514318530543][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:42][16/Feb/23 13:34:42][took 0.028 secs] +[<<][56cc5ff1e96a4506709649][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:41][16/Feb/23 13:34:42][took 0.134 secs] +[>>][56cc5ff2167a4700188837][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:42] +[<<][56cc5ff2167a4700188837][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:42][16/Feb/23 13:34:42][took 0.03 secs] +[<<][56cc5ff837ecc235623097][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:34:48][16/Feb/23 13:34:48][took 0.063 secs] +[>>][56cc5ff8478cc853903288][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:34:48] +[<<][56cc5ff8478cc853903288][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:34:48][16/Feb/23 13:34:48][took 0.012 secs] +[<<][56cc5ff954bbc051775572][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.071 secs] +[>>][56cc5ff9664fc398745550][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:49] +[<<][56cc5ff9664fc398745550][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.006 secs] +[<<][56cc5ff977e3c208566806][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.083 secs] +[>>][56cc5ff98ca44951777541][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:49] +[<<][56cc5ff98ca44951777541][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.028 secs] +[<<][56cc5ff9762e4442817130][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.152 secs] +[>>][56cc5ff99b88c258927845][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:49] +[<<][56cc5ff99b88c258927845][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:49][16/Feb/23 13:34:49][took 0.027 secs] +[<<][56cc5ffa54004554414288][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/23 13:34:50][16/Feb/23 13:34:50][took 0.077 secs] +[>>][56cc5ffa670b4666153346][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/23 13:34:50] +[<<][56cc5ffa670b4666153346][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/23 13:34:50][16/Feb/23 13:34:50][took 0.025 secs] +[<<][56cc5ffb6267c914173743][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.076 secs] +[>>][56cc5ffb75344677853452][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:51] +[<<][56cc5ffb75344677853452][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.006 secs] +[<<][56cc5ffb8706c346864932][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.081 secs] +[>>][56cc5ffb9b0bc878839798][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:51] +[<<][56cc5ffb9b0bc878839798][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.025 secs] +[<<][56cc5ffb8706c474909346][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.128 secs] +[>>][56cc5ffba6854669126284][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:51] +[<<][56cc5ffba6854669126284][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:34:51][16/Feb/23 13:34:51][took 0.034 secs] +[<<][56cc60046361c856220380][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:35:00][16/Feb/23 13:35:00][took 0.082 secs] +[>>][56cc600477a54843657971][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:35:00] + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 52 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 61 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/23 13:35:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cc600477a54843657971][DEFAULT][/notificationAssignmentConfig.php][16/Feb/23 13:35:00][16/Feb/23 13:35:00][took 0.037 secs] +[<<][56cc60059b88c912879173][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.095 secs] +[>>][56cc6005b2f8c157607744][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:01] +[<<][56cc6005b2f8c157607744][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.0079999999999999 secs] +[<<][56cc6005c5484562546424][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.083 secs] +[>>][56cc6005d9ca4127877455][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:01] +[<<][56cc6005d9ca4127877455][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.027 secs] +[<<][56cc6005c44e4097591262][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.143 secs] +[>>][56cc6005e737c088762066][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:01] +[<<][56cc6005e737c088762066][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:01][16/Feb/23 13:35:01][took 0.032 secs] +[<<][56cc600a455a4570696775][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.075 secs] +[>>][56cc600a57e84714089475][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:35:06] +[<<][56cc600a57e84714089475][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.007 secs] +[<<][56cc600a641d4503626877][DEFAULT][/lib/testcases/archiveData.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.082 secs] +[>>][56cc600a7860c513413222][DEFAULT][/lib/testcases/archiveData.php][16/Feb/23 13:35:06] +[<<][56cc600a7860c513413222][DEFAULT][/lib/testcases/archiveData.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.129 secs] +[<<][56cc600a65174711343985][DEFAULT][/lib/testcases/listTestCases.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.24 secs] +[>>][56cc600a9fedc541127250][DEFAULT][/lib/testcases/listTestCases.php][16/Feb/23 13:35:06] +[<<][56cc600a9fedc541127250][DEFAULT][/lib/testcases/listTestCases.php][16/Feb/23 13:35:06][16/Feb/23 13:35:06][took 0.169 secs] +[<<][56cc600af2344496714928][DEFAULT][/lib/ajax/gettprojectnodes.php][16/Feb/23 13:35:06][16/Feb/23 13:35:07][took 0.066 secs] +[>>][56cc600b0eaa4161212127][DEFAULT][/lib/ajax/gettprojectnodes.php][16/Feb/23 13:35:07] +[<<][56cc600b0eaa4161212127][DEFAULT][/lib/ajax/gettprojectnodes.php][16/Feb/23 13:35:07][16/Feb/23 13:35:07][took 0.01 secs] +[<<][56cc600c908c4071822085][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:35:08][16/Feb/23 13:35:08][took 0.066 secs] +[>>][56cc600ca0e7c318461483][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:35:08] +[<<][56cc600ca0e7c318461483][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/23 13:35:08][16/Feb/23 13:35:08][took 0.014 secs] +[<<][56cc600fd0c1c534451869][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:11][16/Feb/23 13:35:11][took 0.068 secs] +[>>][56cc600fe19a4648260938][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:11] +[<<][56cc600fe19a4648260938][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:11][16/Feb/23 13:35:12][took 0.1 secs] +[<<][56cc60126d644937200319][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:14][16/Feb/23 13:35:14][took 0.085 secs] +[>>][56cc601282a1c470186868][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:14] +[<<][56cc601282a1c470186868][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:14][16/Feb/23 13:35:14][took 0.161 secs] +[<<][56cc602c0f274971346356][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:40][16/Feb/23 13:35:40][took 0.077 secs] +[>>][56cc602c2270c502206500][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:40] + [16/Feb/23 13:35:40][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Role 'guest' was saved +[<<][56cc602c2270c502206500][DEFAULT][/lib/usermanagement/rolesEdit.php][16/Feb/23 13:35:40][16/Feb/23 13:35:40][took 0.018 secs] +[<<][56cc602c2d6d4510277674][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:40][16/Feb/23 13:35:40][took 0.066 secs] +[>>][56cc602c3dc8c078546170][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:40] +[<<][56cc602c3dc8c078546170][DEFAULT][/lib/usermanagement/rolesView.php][16/Feb/23 13:35:40][16/Feb/23 13:35:40][took 0.018 secs] +[<<][56cc602ddbfcc361039035][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:41][16/Feb/23 13:35:41][took 0.074 secs] +[>>][56cc602dee8ac713434436][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:41] +[<<][56cc602dee8ac713434436][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:35:41][16/Feb/23 13:35:41][took 0.006 secs] +[<<][56cc602e0ee8c482549919][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:42][16/Feb/23 13:35:42][took 0.078 secs] +[>>][56cc602e22324566857772][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:42] +[<<][56cc602e22324566857772][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:35:42][16/Feb/23 13:35:42][took 0.024 secs] +[<<][56cc602e10dcc694735773][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:42][16/Feb/23 13:35:42][took 0.119 secs] +[>>][56cc602e2e28c223359585][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:42] +[<<][56cc602e2e28c223359585][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:35:42][16/Feb/23 13:35:42][took 0.035 secs] +[<<][56cc6038b087c639669636][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:35:52][16/Feb/23 13:35:52][took 0.067 secs] +[>>][56cc6038c121c762644311][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:35:52] +[<<][56cc6038c121c762644311][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:35:52][16/Feb/23 13:35:52][took 0.013 secs] +[<<][56cc609cf178c667005073][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:37:32][16/Feb/23 13:37:33][took 0.071 secs] +[>>][56cc609d0eaa4784285776][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:37:33] +[<<][56cc609d0eaa4784285776][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:37:33][16/Feb/23 13:37:33][took 0.01 secs] +[<<][56cc609d236ac308228491][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:37:33][16/Feb/23 13:37:33][took 0.071 secs] +[>>][56cc609d34fec682508039][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:37:33] +[<<][56cc609d34fec682508039][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:37:33][16/Feb/23 13:37:33][took 0.029 secs] +[<<][56cc609d232c4621154179][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:37:33][16/Feb/23 13:37:33][took 0.134 secs] +[>>][56cc609d43e34679132146][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:37:33] +[<<][56cc609d43e34679132146][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:37:33][16/Feb/23 13:37:33][took 0.048 secs] +[<<][56cc609f5538c007705606][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:37:35][16/Feb/23 13:37:35][took 0.072 secs] +[>>][56cc609f66ccc194230661][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:37:35] +[<<][56cc609f66ccc194230661][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:37:35][16/Feb/23 13:37:35][took 0.015 secs] +[<<][56cc60d70795c660209767][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.073 secs] +[>>][56cc60d719a6c779797131][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:31] +[<<][56cc60d719a6c779797131][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.006 secs] +[<<][56cc60d7288b4880526851][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.077 secs] +[>>][56cc60d73b964775431729][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:31] +[<<][56cc60d73b964775431729][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.028 secs] +[<<][56cc60d7288b4911821165][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.15 secs] +[>>][56cc60d74d68c677704344][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:38:31] +[<<][56cc60d74d68c677704344][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:38:31][16/Feb/23 13:38:31][took 0.034 secs] +[<<][56cc60d8c1604687764977][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:38:32][16/Feb/23 13:38:32][took 0.079 secs] +[>>][56cc60d8d4a9c960490664][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:38:32] +[<<][56cc60d8d4a9c960490664][DEFAULT][/lib/cfields/cfieldsView.php][16/Feb/23 13:38:32][16/Feb/23 13:38:32][took 0.014 secs] +[<<][56cc60da3b194728121656][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:34][16/Feb/23 13:38:34][took 0.071 secs] +[>>][56cc60da4cebc747974547][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:34] +[<<][56cc60da4cebc747974547][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:34][16/Feb/23 13:38:34][took 0.144 secs] +[<<][56cc60f1e6f94176794061][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:57][16/Feb/23 13:38:58][took 0.069 secs] +[>>][56cc60f203ec4699480660][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:58] + [16/Feb/23 13:38:58][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Custom field 'SE Prozess' was created + [16/Feb/23 13:38:58][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Custom field 'SE Prozess' was assigned to Test Project 'testlink' +[<<][56cc60f203ec4699480660][DEFAULT][/lib/cfields/cfieldsEdit.php][16/Feb/23 13:38:58][16/Feb/23 13:38:58][took 0.026 secs] +[<<][56cc60f3c8b34422530083][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:59][16/Feb/23 13:38:59][took 0.068 secs] +[>>][56cc60f3d94d4114183453][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:59] +[<<][56cc60f3d94d4114183453][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:38:59][16/Feb/23 13:38:59][took 0.008 secs] +[<<][56cc60f3e9a8c911388943][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:38:59][16/Feb/23 13:39:00][took 0.078 secs] +[>>][56cc60f408ce4436069791][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:39:00] +[<<][56cc60f408ce4436069791][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:39:00][16/Feb/23 13:39:00][took 0.023 secs] +[<<][56cc60f3eaa2c987130386][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:38:59][16/Feb/23 13:39:00][took 0.131 secs] +[>>][56cc60f416f74725326963][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:39:00] +[<<][56cc60f416f74725326963][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:39:00][16/Feb/23 13:39:00][took 0.034 secs] +[<<][56cc60f5280e4501442323][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.068 secs] +[>>][56cc60f538a84809063636][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:39:01] +[<<][56cc60f538a84809063636][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.007 secs] +[<<][56cc60f546544868008976][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.074 secs] +[>>][56cc60f558654534002021][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:01] +[<<][56cc60f558654534002021][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.007 secs] +[<<][56cc60f546544434511024][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.106 secs] +[>>][56cc60f560354530623639][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:01] +[<<][56cc60f560354530623639][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.05 secs] +[<<][56cc60f597df4001762833][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.08 secs] +[>>][56cc60f5abe44611164344][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:01] +[<<][56cc60f5abe44611164344][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:01][16/Feb/23 13:39:01][took 0.006 secs] +[<<][56cc60f6989ac321655404][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:02][16/Feb/23 13:39:02][took 0.065 secs] +[>>][56cc60f6a8794478550441][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:02] +[<<][56cc60f6a8794478550441][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:39:02][16/Feb/23 13:39:02][took 0.007 secs] +[<<][56cc60f80795c445846104][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:04][16/Feb/23 13:39:04][took 0.082 secs] +[>>][56cc60f81b9ac525339440][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:04] +[<<][56cc60f81b9ac525339440][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:04][16/Feb/23 13:39:04][took 0.042 secs] +[<<][56cc6104cdd3c046974143][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:16][16/Feb/23 13:39:16][took 0.064 secs] +[>>][56cc6104dd73c137313307][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:16] +[<<][56cc6104dd73c137313307][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:16][16/Feb/23 13:39:16][took 0.004 secs] +[<<][56cc6104e7764254850377][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:16][16/Feb/23 13:39:17][took 0.066 secs] +[>>][56cc610503adc603940334][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:17] + [16/Feb/23 13:39:17][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Test Project 'testlink' - Requirement specification 'spec 1' was created +[<<][56cc610503adc603940334][DEFAULT][/lib/requirements/reqSpecEdit.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.059 secs] +[<<][56cc610540b6c563922310][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.086 secs] +[>>][56cc610555b5c145662170][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:17] +[<<][56cc610555b5c145662170][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.047 secs] +[<<][56cc61059629c194101518][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.072 secs] +[>>][56cc6105a7fc4423782572][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17] +[<<][56cc6105a7fc4423782572][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.023 secs] +[<<][56cc6105bb45c877127913][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.064 secs] +[>>][56cc6105cb244295244632][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17] +[<<][56cc6105cb244295244632][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:17][16/Feb/23 13:39:17][took 0.006 secs] +[<<][56cc610660b24614238676][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:39:18][16/Feb/23 13:39:18][took 0.077 secs] +[>>][56cc610673fbc774556096][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:39:18] +[<<][56cc610673fbc774556096][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:39:18][16/Feb/23 13:39:18][took 0.064 secs] +[<<][56cc61094ea14472223346][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:21][16/Feb/23 13:39:21][took 0.08 secs] +[>>][56cc61096267c947135733][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:21] +[<<][56cc61096267c947135733][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:21][16/Feb/23 13:39:21][took 0.043 secs] +[<<][56cc61137b8d4086385787][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.066 secs] +[>>][56cc61138be8c593880333][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:31] +[<<][56cc61138be8c593880333][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.007 secs] +[<<][56cc6113985c4762678634][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.072 secs] +[>>][56cc6113aa2ec035258614][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:31] + [16/Feb/23 13:39:31][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was created +[<<][56cc6113aa2ec035258614][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.064 secs] +[<<][56cc6113c0664570350318][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.068 secs] +[>>][56cc6113d1004973293258][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:39:31] + [16/Feb/23 13:39:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:39:31][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:39:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc6113d1004973293258][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:39:31][16/Feb/23 13:39:31][took 0.062 secs] +[<<][56cc6114134dc391766983][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.068 secs] +[>>][56cc611424264597012158][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:32] +[<<][56cc611424264597012158][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.033 secs] +[<<][56cc61145150c133602777][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.061 secs] +[>>][56cc611460b24659552651][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32] +[<<][56cc611460b24659552651][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.007 secs] +[<<][56cc611469f94158086504][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.062 secs] +[>>][56cc6114791c4881590092][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32] +[<<][56cc6114791c4881590092][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:39:32][16/Feb/23 13:39:32][took 0.008 secs] +[<<][56cc6167065d4665147379][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:55][16/Feb/23 13:40:55][took 0.09 secs] +[>>][56cc61671cd34667108679][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:55] +[<<][56cc61671cd34667108679][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:55][16/Feb/23 13:40:55][took 0.049 secs] +[<<][56cc616ab3b44176847253][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:40:58][16/Feb/23 13:40:58][took 0.073 secs] +[>>][56cc616ac6bf4988010420][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:40:58] +[<<][56cc616ac6bf4988010420][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:40:58][16/Feb/23 13:40:58][took 0.005 secs] +[<<][56cc616ad0c1c319935998][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:58][16/Feb/23 13:40:58][took 0.07 secs] +[>>][56cc616ae2174604514949][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:58] +[<<][56cc616ae2174604514949][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:40:58][16/Feb/23 13:40:58][took 0.044 secs] +[<<][56cc616d518f4318644942][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.079 secs] +[>>][56cc616d6555c376639255][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:01] + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1021 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:41:01][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1026 + [16/Feb/23 13:41:01][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cc616d6555c376639255][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.065 secs] +[<<][56cc616d7c0a4586952472][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.068 secs] +[>>][56cc616d8ca44580473014][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:01] + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:41:01][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:41:01][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc616d8ca44580473014][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.065 secs] +[<<][56cc616dc298c161764563][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.07 secs] +[>>][56cc616dd3afc541699573][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:01] +[<<][56cc616dd3afc541699573][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:01][16/Feb/23 13:41:01][took 0.037 secs] +[<<][56cc616e10214164088068][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02][16/Feb/23 13:41:02][took 0.069 secs] +[>>][56cc616e21384501760551][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02] +[<<][56cc616e21384501760551][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02][16/Feb/23 13:41:02][took 0.008 secs] +[<<][56cc616e3d4bc758856378][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02][16/Feb/23 13:41:02][took 0.065 secs] +[>>][56cc616e4d68c491360170][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02] +[<<][56cc616e4d68c491360170][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:02][16/Feb/23 13:41:02][took 0.008 secs] +[<<][56cc617d12924434613770][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:17][16/Feb/23 13:41:17][took 0.072 secs] +[>>][56cc617d24a34581780073][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:17] +[<<][56cc617d24a34581780073][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:17][16/Feb/23 13:41:17][took 0.047 secs] +[<<][56cc6183d0834767458490][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:41:23][16/Feb/23 13:41:23][took 0.06 secs] +[>>][56cc6183df67c786953900][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:41:23] +[<<][56cc6183df67c786953900][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:41:23][16/Feb/23 13:41:23][took 0.004 secs] +[<<][56cc6183ee8ac517221357][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:23][16/Feb/23 13:41:24][took 0.084 secs] +[>>][56cc61840ee8c212529869][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:24] +[<<][56cc61840ee8c212529869][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:24][16/Feb/23 13:41:24][took 0.047 secs] +[<<][56cc6187d7d64457790710][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:27][16/Feb/23 13:41:27][took 0.077 secs] +[>>][56cc6187eae14442805837][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:27] + [16/Feb/23 13:41:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/23 13:41:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/23 13:41:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/23 13:41:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1021 + [16/Feb/23 13:41:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:41:28][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:41:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1026 + [16/Feb/23 13:41:28][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cc6187eae14442805837][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:41:27][16/Feb/23 13:41:28][took 0.072 secs] +[<<][56cc61881159c334932670][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:28][16/Feb/23 13:41:28][took 0.078 secs] +[>>][56cc61882464c392872575][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:28] + [16/Feb/23 13:41:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:41:28][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 4 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:41:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc61882464c392872575][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:41:28][16/Feb/23 13:41:28][took 0.072 secs] +[<<][56cc618884574607035030][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:28][16/Feb/23 13:41:28][took 0.088 secs] +[>>][56cc61889a504211836695][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:28] +[<<][56cc61889a504211836695][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:41:28][16/Feb/23 13:41:28][took 0.047 secs] +[<<][56cc618905e04098089099][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29][16/Feb/23 13:41:29][took 0.094 secs] +[>>][56cc61891d504644643184][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29] +[<<][56cc61891d504644643184][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29][16/Feb/23 13:41:29][took 0.012 secs] +[<<][56cc61892dea4957239400][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29][16/Feb/23 13:41:29][took 0.078 secs] +[>>][56cc61894133c809001097][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29] +[<<][56cc61894133c809001097][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:41:29][16/Feb/23 13:41:29][took 0.009 secs] +[<<][56cc61d84e244050529542][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:42:48][16/Feb/23 13:42:48][took 0.069 secs] +[>>][56cc61d85f3b4765919182][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:42:48] +[<<][56cc61d85f3b4765919182][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:42:48][16/Feb/23 13:42:48][took 0.054 secs] +[<<][56cc61dab2ba4492425197][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:42:50][16/Feb/23 13:42:50][took 0.075 secs] +[>>][56cc61dac5484992945095][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:42:50] +[<<][56cc61dac5484992945095][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:42:50][16/Feb/23 13:42:50][took 0.054 secs] +[<<][56cc61fa382b4397331569][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.068 secs] +[>>][56cc61fa49424615912830][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:43:22] +[<<][56cc61fa49424615912830][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.006 secs] +[<<][56cc61fa595f4608169575][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.079 secs] +[>>][56cc61fa6ce74914141943][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:22][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was created +[<<][56cc61fa6ce74914141943][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.057 secs] +[<<][56cc61fa82e04045660577][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.068 secs] +[>>][56cc61fa93f74234952159][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:43:22] + [16/Feb/23 13:43:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:43:22][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 8 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 8 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:43:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc61fa93f74234952159][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:43:22][16/Feb/23 13:43:22][took 0.068 secs] +[<<][56cc61faf07ec548021248][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:43:22][16/Feb/23 13:43:23][took 0.083 secs] +[>>][56cc61fb109e4379151477][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:43:23] +[<<][56cc61fb109e4379151477][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:43:23][16/Feb/23 13:43:23][took 0.038 secs] +[<<][56cc61fb75344567846290][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23][16/Feb/23 13:43:23][took 0.086 secs] +[>>][56cc61fb8a334739180680][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23] +[<<][56cc61fb8a334739180680][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23][16/Feb/23 13:43:23][took 0.008 secs] +[<<][56cc61fb9917c717736351][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23][16/Feb/23 13:43:23][took 0.078 secs] +[>>][56cc61fbac9fc980148717][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23] +[<<][56cc61fbac9fc980148717][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:43:23][16/Feb/23 13:43:23][took 0.009 secs] +[<<][56cc6391c0664645829704][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:09][16/Feb/23 13:50:09][took 0.109 secs] +[>>][56cc6391db02c302031273][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:09] +[<<][56cc6391db02c302031273][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:09][16/Feb/23 13:50:09][took 0.008 secs] +[<<][56cc639207d44503897386][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:10][16/Feb/23 13:50:10][took 0.084 secs] +[>>][56cc63921c564217693890][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:10] +[<<][56cc63921c564217693890][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:10][16/Feb/23 13:50:10][took 0.03 secs] +[<<][56cc63921159c787552206][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:10][16/Feb/23 13:50:10][took 0.113 secs] +[>>][56cc63922d6d4302801772][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:10] +[<<][56cc63922d6d4302801772][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:10][16/Feb/23 13:50:10][took 0.09 secs] +[<<][56cc6394094b4505018944][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.077 secs] +[>>][56cc63941c17c594224349][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:12] +[<<][56cc63941c17c594224349][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.01 secs] +[<<][56cc63942ee44493674652][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.096 secs] +[>>][56cc63944692c714596980][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:12] +[<<][56cc63944692c714596980][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.044 secs] +[<<][56cc63942f9fc616197092][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.169 secs] +[>>][56cc63945920c319157210][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:12] +[<<][56cc63945920c319157210][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.012 secs] +[<<][56cc6394aaabc205554856][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.101 secs] +[>>][56cc6394c392c313854606][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12] +[<<][56cc6394c392c313854606][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.013 secs] +[<<][56cc6394ddb24621148962][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.074 secs] +[>>][56cc6394f001c170062467][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12] +[<<][56cc6394f001c170062467][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:12][16/Feb/23 13:50:12][took 0.0079999999999999 secs] +[<<][56cc639605634847874552][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:14][16/Feb/23 13:50:14][took 0.084 secs] +[>>][56cc63961a23c981553091][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:14] +[<<][56cc63961a23c981553091][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:14][16/Feb/23 13:50:14][took 0.054 secs] +[<<][56cc63987478c963427016][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:16][16/Feb/23 13:50:16][took 0.087 secs] +[>>][56cc639889b64601318576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:16] +[<<][56cc639889b64601318576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:16][16/Feb/23 13:50:16][took 0.06 secs] +[<<][56cc63a34a3c4037470616][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:50:27][16/Feb/23 13:50:27][took 0.074 secs] +[>>][56cc63a35c8bc497168398][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:50:27] +[<<][56cc63a35c8bc497168398][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:50:27][16/Feb/23 13:50:27][took 0.006 secs] +[<<][56cc63a36a37c184596940][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:27][16/Feb/23 13:50:27][took 0.094 secs] +[>>][56cc63a3812ac368085171][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:27] +[<<][56cc63a3812ac368085171][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:27][16/Feb/23 13:50:27][took 0.04 secs] +[<<][56cc63bc77e3c817519870][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.073 secs] +[>>][56cc63bc89f4c926501266][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:52] +[<<][56cc63bc89f4c926501266][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.005 secs] +[<<][56cc63bca4cfc176098016][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.093 secs] +[>>][56cc63bcbc3fc619843143][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:52] +[<<][56cc63bcbc3fc619843143][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.024 secs] +[<<][56cc63bca8b7c198492518][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.129 secs] +[>>][56cc63bcc874c690417775][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:52] +[<<][56cc63bcc874c690417775][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:50:52][16/Feb/23 13:50:52][took 0.075 secs] +[<<][56cc63be9a504009544605][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.071 secs] +[>>][56cc63beaba5c558446138][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:54] +[<<][56cc63beaba5c558446138][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.007 secs] +[<<][56cc63bebb45c355193504][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.098 secs] +[>>][56cc63bed3714199405989][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:54] +[<<][56cc63bed3714199405989][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.039 secs] +[<<][56cc63bebc3fc564589659][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.165 secs] +[>>][56cc63bee5054969279769][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:54] +[<<][56cc63bee5054969279769][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:50:54][16/Feb/23 13:50:54][took 0.014 secs] +[<<][56cc63bf43e34596480562][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55][16/Feb/23 13:50:55][took 0.108 secs] +[>>][56cc63bf5ebe4451439707][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55] +[<<][56cc63bf5ebe4451439707][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55][16/Feb/23 13:50:55][took 0.011 secs] +[<<][56cc63bf7766c825259371][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55][16/Feb/23 13:50:55][took 0.069 secs] +[>>][56cc63bf883f4748404190][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55] +[<<][56cc63bf883f4748404190][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:50:55][16/Feb/23 13:50:55][took 0.008 secs] +[<<][56cc63c046d14962342403][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:56][16/Feb/23 13:50:56][took 0.089 secs] +[>>][56cc63c05cca4486150689][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:56] +[<<][56cc63c05cca4486150689][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:50:56][16/Feb/23 13:50:56][took 0.056 secs] +[<<][56cc63c0ed13c723916414][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:50:56][16/Feb/23 13:50:57][took 0.083 secs] +[>>][56cc63c10d71c635493249][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:50:57] +[<<][56cc63c10d71c635493249][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:50:57][16/Feb/23 13:50:57][took 0.005 secs] +[<<][56cc63c2c25a4148717576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:58][16/Feb/23 13:50:58][took 0.086 secs] +[>>][56cc63c2d797c311479692][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:58] +[<<][56cc63c2d797c311479692][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:50:58][16/Feb/23 13:50:58][took 0.053 secs] +[<<][56cc63c8d3ee4928063393][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:04][16/Feb/23 13:51:04][took 0.068 secs] +[>>][56cc63c8e4884578380961][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:04] +[<<][56cc63c8e4884578380961][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:04][16/Feb/23 13:51:04][took 0.005 secs] +[<<][56cc63c902f24952805747][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:05][16/Feb/23 13:51:05][took 0.083 secs] +[>>][56cc63c91735c981238498][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:05] +[<<][56cc63c91735c981238498][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:05][16/Feb/23 13:51:05][took 0.038 secs] +[<<][56cc63d972464850304846][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.073 secs] +[>>][56cc63d984574082244637][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:21] +[<<][56cc63d984574082244637][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.005 secs] +[<<][56cc63d9a164c326906455][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.078 secs] +[>>][56cc63d9b52b4556335728][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:21] +[<<][56cc63d9b52b4556335728][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.023 secs] +[<<][56cc63d9a164c518867078][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.127 secs] +[>>][56cc63d9c0e34510956598][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:21] +[<<][56cc63d9c0e34510956598][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:21][16/Feb/23 13:51:21][took 0.06 secs] +[<<][56cc63db61ac4276112863][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.09 secs] +[>>][56cc63db78224846164475][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:23] +[<<][56cc63db78224846164475][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.008 secs] +[<<][56cc63db8977c616640540][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.098 secs] +[>>][56cc63dba1e1c562462676][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:23] +[<<][56cc63dba1e1c562462676][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.038 secs] +[<<][56cc63db8aeec002472821][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.161 secs] +[>>][56cc63dbb27bc720130222][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:23] +[<<][56cc63dbb27bc720130222][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:23][16/Feb/23 13:51:23][took 0.011 secs] +[<<][56cc63dc0db04931062987][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24][16/Feb/23 13:51:24][took 0.094 secs] +[>>][56cc63dc24e1c223268327][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24] +[<<][56cc63dc24e1c223268327][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24][16/Feb/23 13:51:24][took 0.01 secs] +[<<][56cc63dc33c64296670675][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24][16/Feb/23 13:51:24][took 0.079 secs] +[>>][56cc63dc474e4436700641][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24] +[<<][56cc63dc474e4436700641][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:24][16/Feb/23 13:51:24][took 0.008 secs] +[<<][56cc63dd4b74c558822974][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:25][16/Feb/23 13:51:25][took 0.077 secs] +[>>][56cc63dd5e7fc188023887][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:25] +[<<][56cc63dd5e7fc188023887][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:25][16/Feb/23 13:51:25][took 0.057 secs] +[<<][56cc63dfeec94492226015][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:27][16/Feb/23 13:51:28][took 0.08 secs] +[>>][56cc63e00eaa4687978151][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:28] +[<<][56cc63e00eaa4687978151][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:28][16/Feb/23 13:51:28][took 0.052 secs] +[<<][56cc63e56a764332668381][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:33][16/Feb/23 13:51:33][took 0.084 secs] +[>>][56cc63e57f36c919355965][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:33] +[<<][56cc63e57f36c919355965][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:51:33][16/Feb/23 13:51:33][took 0.005 secs] +[<<][56cc63e58b6bc506320220][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:33][16/Feb/23 13:51:33][took 0.085 secs] +[>>][56cc63e5a06ac570388024][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:33] +[<<][56cc63e5a06ac570388024][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:33][16/Feb/23 13:51:33][took 0.039 secs] +[<<][56cc63f85826c005924871][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.078 secs] +[>>][56cc63f86b31c463949767][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:52] +[<<][56cc63f86b31c463949767][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.006 secs] +[<<][56cc63f8858fc019514639][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.092 secs] +[>>][56cc63f89c444588965437][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:52] +[<<][56cc63f89c444588965437][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.032 secs] +[<<][56cc63f88495c909559654][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.163 secs] +[>>][56cc63f8acde4657590237][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:52] +[<<][56cc63f8acde4657590237][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:51:52][16/Feb/23 13:51:52][took 0.05 secs] +[<<][56cc63faa1e1c789794088][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.068 secs] +[>>][56cc63fab2ba4714329811][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:54] +[<<][56cc63fab2ba4714329811][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.0069999999999999 secs] +[<<][56cc63fac44e4849988782][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.094 secs] +[>>][56cc63fadb7fc288723830][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:54] +[<<][56cc63fadb7fc288723830][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.036 secs] +[<<][56cc63fac44e4418685591][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.164 secs] +[>>][56cc63faed13c136049553][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:54] +[<<][56cc63faed13c136049553][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:51:54][16/Feb/23 13:51:54][took 0.01 secs] +[<<][56cc63fb48484899250205][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55][16/Feb/23 13:51:55][took 0.104 secs] +[>>][56cc63fb62294080726419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55] +[<<][56cc63fb62294080726419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55][16/Feb/23 13:51:55][took 0.013 secs] +[<<][56cc63fb7a164453160438][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55][16/Feb/23 13:51:55][took 0.075 secs] +[>>][56cc63fb8ca44820846044][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55] +[<<][56cc63fb8ca44820846044][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:51:55][16/Feb/23 13:51:55][took 0.009 secs] +[<<][56cc63fc62294056677511][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:56][16/Feb/23 13:51:56][took 0.088 secs] +[>>][56cc63fc77e3c408094140][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:56] +[<<][56cc63fc77e3c408094140][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:51:56][16/Feb/23 13:51:56][took 0.054 secs] +[<<][56cc63fe37314288674777][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:58][16/Feb/23 13:51:58][took 0.082 secs] +[>>][56cc63fe4bb34367010167][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:58] +[<<][56cc63fe4bb34367010167][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:51:58][16/Feb/23 13:51:58][took 0.054 secs] +[<<][56cc640314864541328791][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:03][16/Feb/23 13:52:03][took 0.082 secs] +[>>][56cc640329084998109234][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:03] +[<<][56cc640329084998109234][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:03][16/Feb/23 13:52:03][took 0.005 secs] +[<<][56cc640335f8c836902414][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:03][16/Feb/23 13:52:03][took 0.09 secs] +[>>][56cc64034c304253717854][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:03] +[<<][56cc64034c304253717854][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:03][16/Feb/23 13:52:03][took 0.048 secs] +[<<][56cc6428cecdc720112313][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:40][16/Feb/23 13:52:40][took 0.074 secs] +[>>][56cc6428e15bc185412985][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:40] +[<<][56cc6428e15bc185412985][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:40][16/Feb/23 13:52:40][took 0.006 secs] +[<<][56cc64290bfac433801129][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:41][16/Feb/23 13:52:41][took 0.083 secs] +[>>][56cc642920bb4446453169][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:41] +[<<][56cc642920bb4446453169][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:41][16/Feb/23 13:52:41][took 0.024 secs] +[<<][56cc64290e6bc642654137][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:41][16/Feb/23 13:52:41][took 0.122 secs] +[>>][56cc64292cb1c697084594][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:41] +[<<][56cc64292cb1c697084594][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:41][16/Feb/23 13:52:41][took 0.061 secs] +[<<][56cc642b4133c188182082][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.071 secs] +[>>][56cc642b52c7c732561346][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:52:43] +[<<][56cc642b52c7c732561346][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.007 secs] +[<<][56cc642b63dec445166289][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.1 secs] +[>>][56cc642b7c874584817562][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:52:43] +[<<][56cc642b7c874584817562][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.038 secs] +[<<][56cc642b63dec083896878][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.182 secs] +[>>][56cc642b90cac973059439][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:52:43] +[<<][56cc642b90cac973059439][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:52:43][16/Feb/23 13:52:43][took 0.012 secs] +[<<][56cc642bdeeac915381744][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:43][16/Feb/23 13:52:44][took 0.094 secs] +[>>][56cc642c0236c186096779][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44] +[<<][56cc642c0236c186096779][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44][16/Feb/23 13:52:44][took 0.011 secs] +[<<][56cc642c11984996588148][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44][16/Feb/23 13:52:44][took 0.08 secs] +[>>][56cc642c259d4923531099][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44] +[<<][56cc642c259d4923531099][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:52:44][16/Feb/23 13:52:44][took 0.01 secs] +[<<][56cc642dc48cc306492157][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:52:45][16/Feb/23 13:52:45][took 0.073 secs] +[>>][56cc642dd6dc4809803751][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:52:45] +[<<][56cc642dd6dc4809803751][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:52:45][16/Feb/23 13:52:45][took 0.059 secs] +[<<][56cc6430d0c1c155551145][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:48][16/Feb/23 13:52:48][took 0.074 secs] +[>>][56cc6430e34fc796917174][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:48] +[<<][56cc6430e34fc796917174][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:48][16/Feb/23 13:52:48][took 0.053 secs] +[<<][56cc6436762e4573885291][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:54][16/Feb/23 13:52:54][took 0.074 secs] +[>>][56cc643688bc4443719454][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:54] +[<<][56cc643688bc4443719454][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:52:54][16/Feb/23 13:52:54][took 0.007 secs] +[<<][56cc64369629c883444794][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:54][16/Feb/23 13:52:54][took 0.084 secs] +[>>][56cc6436ab28c590174625][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:54] + [16/Feb/23 13:52:54][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.4' was created +[<<][56cc6436ab28c590174625][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:52:54][16/Feb/23 13:52:54][took 0.054 secs] +[<<][56cc6439beb0c600459376][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:57][16/Feb/23 13:52:57][took 0.082 secs] +[>>][56cc6439d2b5c234372509][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:57] +[<<][56cc6439d2b5c234372509][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:52:57][16/Feb/23 13:52:57][took 0.007 secs] +[<<][56cc6439eb1fc012974139][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:57][16/Feb/23 13:52:58][took 0.087 secs] +[>>][56cc643a0c77c021958496][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:58] +[<<][56cc643a0c77c021958496][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:52:58][16/Feb/23 13:52:58][took 0.033 secs] +[<<][56cc6439ed524912024381][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:57][16/Feb/23 13:52:58][took 0.135 secs] +[>>][56cc643a1aa0c291023058][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:58] +[<<][56cc643a1aa0c291023058][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:52:58][16/Feb/23 13:52:58][took 0.057 secs] +[<<][56cc6457e92bc887205664][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:53:27][16/Feb/23 13:53:28][took 0.068 secs] +[>>][56cc645805e04460507764][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:53:28] +[<<][56cc645805e04460507764][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.008 secs] +[<<][56cc6458182fc028980292][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.102 secs] +[>>][56cc64583193c969092647][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:53:28] +[<<][56cc64583193c969092647][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.007 secs] +[<<][56cc6458182fc451533150][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.134 secs] +[>>][56cc64583963c538590041][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:28] +[<<][56cc64583963c538590041][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.053 secs] +[<<][56cc64589eb54376123828][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.08 secs] +[>>][56cc6458b27bc798692399][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28] +[<<][56cc6458b27bc798692399][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.0079999999999999 secs] +[<<][56cc6458c4cb4969606039][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.077 secs] +[>>][56cc6458d7d64419958158][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28] +[<<][56cc6458d7d64419958158][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:28][16/Feb/23 13:53:28][took 0.008 secs] +[<<][56cc645a065d4071724806][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:53:30][16/Feb/23 13:53:30][took 0.079 secs] +[>>][56cc645a19e54903742308][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:53:30] +[<<][56cc645a19e54903742308][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 13:53:30][16/Feb/23 13:53:30][took 0.055 secs] +[<<][56cc645aa6c3c206796838][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:53:30][16/Feb/23 13:53:30][took 0.081 secs] +[>>][56cc645abb074889503100][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:53:30] +[<<][56cc645abb074889503100][DEFAULT][/lib/ajax/getreqspeclog.php][16/Feb/23 13:53:30][16/Feb/23 13:53:30][took 0.005 secs] +[<<][56cc645c795ac724492879][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:32][16/Feb/23 13:53:32][took 0.078 secs] +[>>][56cc645c8c65c924130817][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:32] +[<<][56cc645c8c65c924130817][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:32][16/Feb/23 13:53:32][took 0.053 secs] +[<<][56cc64680cf4c994779782][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.078 secs] +[>>][56cc6468207cc509952930][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:53:44] +[<<][56cc6468207cc509952930][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.006 secs] +[<<][56cc64682ea5c743573865][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.087 secs] +[>>][56cc64684421c991984345][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.5' was created +[<<][56cc64684421c991984345][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.058 secs] +[<<][56cc64685b14c817134450][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.072 secs] +[>>][56cc64686ce74900273905][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:53:44] + [16/Feb/23 13:53:44][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:53:44][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 14 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 14 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 13:53:44][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc64686ce74900273905][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.066 secs] +[<<][56cc6468cbdfc350879884][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.079 secs] +[>>][56cc6468df67c611053501][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:44] +[<<][56cc6468df67c611053501][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:53:44][16/Feb/23 13:53:44][took 0.037 secs] +[<<][56cc64694e244960952066][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45][16/Feb/23 13:53:45][took 0.079 secs] +[>>][56cc646961eac489050362][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45] +[<<][56cc646961eac489050362][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45][16/Feb/23 13:53:45][took 0.009 secs] +[<<][56cc646974f5c098244094][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45][16/Feb/23 13:53:45][took 0.079 secs] +[>>][56cc6469883f4680847260][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45] +[<<][56cc6469883f4680847260][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:53:45][16/Feb/23 13:53:45][took 0.008 secs] +[<<][56cc64bf572cc351966468][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.072 secs] +[>>][56cc64bf68ff4331809245][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:11] +[<<][56cc64bf68ff4331809245][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.005 secs] +[<<][56cc64bf82e04620469726][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.089 secs] +[>>][56cc64bf9917c601602128][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:11] +[<<][56cc64bf9917c601602128][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.024 secs] +[<<][56cc64bf864b4037651971][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.142 secs] +[>>][56cc64bfa9734875576770][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:11] +[<<][56cc64bfa9734875576770][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:11][16/Feb/23 13:55:11][took 0.055 secs] +[<<][56cc64c21159c784692490][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.084 secs] +[>>][56cc64c2261a4697044719][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:14] +[<<][56cc64c2261a4697044719][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.007 secs] +[<<][56cc64c23675c609023708][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.092 secs] +[>>][56cc64c24cebc181927480][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:14] +[<<][56cc64c24cebc181927480][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.039 secs] +[<<][56cc64c237ae4342981631][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.159 secs] +[>>][56cc64c25efcc964035163][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:14] +[<<][56cc64c25efcc964035163][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.011 secs] +[<<][56cc64c2b3f2c834272244][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.116 secs] +[>>][56cc64c2d0834445163329][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14] +[<<][56cc64c2d0834445163329][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14][16/Feb/23 13:55:14][took 0.013 secs] +[<<][56cc64c2e543c849565752][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:14][16/Feb/23 13:55:15][took 0.067 secs] +[>>][56cc64c301b9c625304134][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:15] +[<<][56cc64c301b9c625304134][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:15][16/Feb/23 13:55:15][took 0.008 secs] +[<<][56cc64c5c1dd4918979895][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:17][16/Feb/23 13:55:17][took 0.071 secs] +[>>][56cc64c5d3afc807689184][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:17] +[<<][56cc64c5d3afc807689184][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:17][16/Feb/23 13:55:17][took 0.041 secs] +[<<][56cc64d08224c901834384][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.063 secs] +[>>][56cc64d091864080316425][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:28] +[<<][56cc64d091864080316425][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.005 secs] +[<<][56cc64d0aaea4981675402][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.092 secs] +[>>][56cc64d0c1dd4548057042][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:28] +[<<][56cc64d0c1dd4548057042][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.023 secs] +[<<][56cc64d0ab674355725276][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.14 secs] +[>>][56cc64d0cdd3c370048315][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:28] +[<<][56cc64d0cdd3c370048315][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 13:55:28][16/Feb/23 13:55:28][took 0.059 secs] +[<<][56cc64d27284c429048719][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.073 secs] +[>>][56cc64d284d44229196578][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:30] +[<<][56cc64d284d44229196578][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.007 secs] +[<<][56cc64d2952fc935842893][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.098 secs] +[>>][56cc64d2ad5b4850186627][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:30] +[<<][56cc64d2ad5b4850186627][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.038 secs] +[<<][56cc64d297a0c620909811][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.16 secs] +[>>][56cc64d2bf6c4221488338][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:30] +[<<][56cc64d2bf6c4221488338][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 13:55:30][16/Feb/23 13:55:30][took 0.012 secs] +[<<][56cc64d31f05c803968763][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31][16/Feb/23 13:55:31][took 0.088 secs] +[>>][56cc64d334fec699043898][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31] +[<<][56cc64d334fec699043898][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31][16/Feb/23 13:55:31][took 0.015 secs] +[<<][56cc64d34421c800560419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31][16/Feb/23 13:55:31][took 0.075 secs] +[>>][56cc64d356afc613046180][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31] +[<<][56cc64d356afc613046180][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 13:55:31][16/Feb/23 13:55:31][took 0.008 secs] +[<<][56cc64d4b181c805065696][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:32][16/Feb/23 13:55:32][took 0.082 secs] +[>>][56cc64d4c5c54129335353][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:32] + [16/Feb/23 13:55:32][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 13:55:32][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 12 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 12 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 +[<<][56cc64d4c5c54129335353][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 13:55:32][16/Feb/23 13:55:32][took 0.051 secs] +[<<][56cc660b3ec2c866438554][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.083 secs] +[>>][56cc660b53064516994441][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:00:43] +[<<][56cc660b53064516994441][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.006 secs] +[<<][56cc660b7090c733783928][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.083 secs] +[>>][56cc660b85514002141770][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:00:43] +[<<][56cc660b85514002141770][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.024 secs] +[<<][56cc660b70cf4838170300][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.138 secs] +[>>][56cc660b92bec201307916][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:00:43] +[<<][56cc660b92bec201307916][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:00:43][16/Feb/23 14:00:43][took 0.064 secs] +[<<][56cc660d8495c200340898][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.076 secs] +[>>][56cc660d97624629573185][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:00:45] +[<<][56cc660d97624629573185][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.009 secs] +[<<][56cc660da7fc4039443019][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.102 secs] +[>>][56cc660dc121c204488480][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:45] +[<<][56cc660dc121c204488480][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.045 secs] +[<<][56cc660da9f04039759338][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.179 secs] +[>>][56cc660dd620c511740404][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:00:45] +[<<][56cc660dd620c511740404][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:00:45][16/Feb/23 14:00:45][took 0.013 secs] +[<<][56cc660e3210c024909377][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46][16/Feb/23 14:00:46][took 0.088 secs] +[>>][56cc660e4809c980481281][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46] +[<<][56cc660e4809c980481281][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46][16/Feb/23 14:00:46][took 0.01 secs] +[<<][56cc660e5632c678072383][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46][16/Feb/23 14:00:46][took 0.078 secs] +[>>][56cc660e697c4164623997][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46] +[<<][56cc660e697c4164623997][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:00:46][16/Feb/23 14:00:46][took 0.009 secs] +[<<][56cc660fa7bdc936713942][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:00:47][16/Feb/23 14:00:47][took 0.088 secs] +[>>][56cc660fbdb6c945393026][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:00:47] +[<<][56cc660fbdb6c945393026][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:00:47][16/Feb/23 14:00:47][took 0.057 secs] +[<<][56cc6612357bc864916995][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:50][16/Feb/23 14:00:50][took 0.091 secs] +[>>][56cc66124c304145874121][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:50] +[<<][56cc66124c304145874121][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:50][16/Feb/23 14:00:50][took 0.054 secs] +[<<][56cc661b1f05c606012085][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.067 secs] +[>>][56cc661b2f614829411902][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:00:59] +[<<][56cc661b2f614829411902][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.006 secs] +[<<][56cc661b3c904669147411][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.103 secs] +[>>][56cc661b55b5c093963081][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:59] + [16/Feb/23 14:00:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.6' was created +[<<][56cc661b55b5c093963081][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.056 secs] +[<<][56cc661b6c2bc772503070][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.072 secs] +[>>][56cc661b7e3cc813861096][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:00:59] + [16/Feb/23 14:00:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined index: users.id - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4198 + [16/Feb/23 14:00:59][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 - SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 16 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1;
THE MESSAGE : SELECT id, login, email FROM TL_users, TL_req_subscription WHERE TL_req_subscription.req_id = 16 AND TL_req_subscription.user_id = AND TL_req_subscription.tproject_id = 1; +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND TL_req_subscription.tproject_id = 1' at line 1 + [16/Feb/23 14:00:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc661b7e3cc813861096][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:00:59][16/Feb/23 14:00:59][took 0.068 secs] +[<<][56cc661be5054433502121][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:00:59][16/Feb/23 14:01:00][took 0.09 secs] +[>>][56cc661c06da4997332773][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:01:00] +[<<][56cc661c06da4997332773][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:01:00][16/Feb/23 14:01:00][took 0.04 secs] +[<<][56cc661c65d2c223131365][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00][16/Feb/23 14:01:00][took 0.079 secs] +[>>][56cc661c791c4410300117][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00] +[<<][56cc661c791c4410300117][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00][16/Feb/23 14:01:00][took 0.008 secs] +[<<][56cc661c8a334408194359][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00][16/Feb/23 14:01:00][took 0.075 secs] +[>>][56cc661c9cc14804421950][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00] +[<<][56cc661c9cc14804421950][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:01:00][16/Feb/23 14:01:00][took 0.008 secs] +[<<][56cc66a131af9174171433][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.091046 secs] +[>>][56cc66a148a58171500318][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:03:13] +[<<][56cc66a148a58171500318][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.007004 secs] +[<<][56cc66a16a996672472956][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.089045 secs] +[>>][56cc66a180953562691510][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:03:13] +[<<][56cc66a180953562691510][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.025012 secs] +[<<][56cc66a17131b593107414][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.125062 secs] +[>>][56cc66a190373622066134][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:03:13] +[<<][56cc66a190373622066134][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/23 14:03:13][16/Feb/23 14:03:13][took 0.06003 secs] +[<<][56cc66a36c8d9676908738][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.088044 secs] +[>>][56cc66a382896031939011][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:03:15] +[<<][56cc66a382896031939011][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.007004 secs] +[<<][56cc66a395d56612936707][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.105053 secs] +[>>][56cc66a3aff83902723122][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:03:15] +[<<][56cc66a3aff83902723122][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.037018 secs] +[<<][56cc66a399fc6110438397][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.166083 secs] +[>>][56cc66a3c305a951040394][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:03:15] +[<<][56cc66a3c305a951040394][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/23 14:03:15][16/Feb/23 14:03:15][took 0.013007 secs] +[<<][56cc66a41ffa0796866395][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16][16/Feb/23 14:03:16][took 0.105053 secs] +[>>][56cc66a439de5404108316][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16] +[<<][56cc66a439de5404108316][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16][16/Feb/23 14:03:16][took 0.011006 secs] +[<<][56cc66a4518fe048790766][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16][16/Feb/23 14:03:16][took 0.071036 secs] +[>>][56cc66a46364a857411021][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16] +[<<][56cc66a46364a857411021][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:03:16][16/Feb/23 14:03:16][took 0.009005 secs] +[<<][56cc66a59c6db400980031][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:03:17][16/Feb/23 14:03:17][took 0.087043 secs] +[>>][56cc66a5b1ec7265080794][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:03:17] +[<<][56cc66a5b1ec7265080794][DEFAULT][/lib/requirements/reqSpecView.php][16/Feb/23 14:03:17][16/Feb/23 14:03:17][took 0.06103 secs] +[<<][56cc66a73c305436374591][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:19][16/Feb/23 14:03:19][took 0.073036 secs] +[>>][56cc66a74e43a673248857][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:19] + [16/Feb/23 14:03:19][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc66a74e43a673248857][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:19][16/Feb/23 14:03:19][took 0.066033 secs] +[<<][56cc66ae47ca7195833275][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:26][16/Feb/23 14:03:26][took 0.070035 secs] +[>>][56cc66ae59223283360554][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:26] +[<<][56cc66ae59223283360554][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:26][16/Feb/23 14:03:26][took 0.06003 secs] +[<<][56cc66b32d884727207703][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:31][16/Feb/23 14:03:31][took 0.065032 secs] +[>>][56cc66b33da75939606307][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:31] +[<<][56cc66b33da75939606307][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:03:31][16/Feb/23 14:03:31][took 0.057028 secs] +[<<][56cc66df7807a813031277][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:15][16/Feb/23 14:04:15][took 0.076038 secs] +[>>][56cc66df8ad68039837053][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:15] +[<<][56cc66df8ad68039837053][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:15][16/Feb/23 14:04:15][took 0.064032 secs] +[<<][56cc66e882691064490416][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:24][16/Feb/23 14:04:24][took 0.065032 secs] +[>>][56cc66e892882670305505][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:24] + [16/Feb/23 14:04:24][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc66e892882670305505][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:24][16/Feb/23 14:04:24][took 0.06003 secs] +[<<][56cc66eb774bd919317237][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:27][16/Feb/23 14:04:27][took 0.066033 secs] +[>>][56cc66eb876ae422517834][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:27] +[<<][56cc66eb876ae422517834][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:27][16/Feb/23 14:04:27][took 0.06003 secs] +[<<][56cc66ec1c4ef133521260][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:04:28][16/Feb/23 14:04:28][took 0.083042 secs] +[>>][56cc66ec31121250255596][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:04:28] +[<<][56cc66ec31121250255596][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:04:28][16/Feb/23 14:04:28][took 0.017008 secs] +[<<][56cc66f55f9a2101103619][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:37][16/Feb/23 14:04:37][took 0.08004 secs] +[>>][56cc66f573a1b897009626][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:37] +[<<][56cc66f573a1b897009626][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:37][16/Feb/23 14:04:37][took 0.061031 secs] +[<<][56cc66fc56ee3099884083][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:44][16/Feb/23 14:04:44][took 0.069034 secs] +[>>][56cc66fc67c8d367021202][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:44] + [16/Feb/23 14:04:44][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc66fc67c8d367021202][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:44][16/Feb/23 14:04:44][took 0.064032 secs] +[<<][56cc66fe6af5b214959428][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:46][16/Feb/23 14:04:46][took 0.084042 secs] +[>>][56cc66fe7fb8e630465541][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:46] +[<<][56cc66fe7fb8e630465541][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:04:46][16/Feb/23 14:04:46][took 0.06103 secs] +[<<][56cc67ad4645b242652123][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:07:41][16/Feb/23 14:07:41][took 0.090018 secs] +[>>][56cc67ad5c7e5592583485][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:07:41] +[<<][56cc67ad5c7e5592583485][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:07:41][16/Feb/23 14:07:41][took 0.019004 secs] +[<<][56cc67c355056121649339][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:08:03][16/Feb/23 14:08:03][took 0.075015 secs] +[>>][56cc67c367945395860554][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:08:03] + [16/Feb/23 14:08:03][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 349 + [16/Feb/23 14:08:04][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.6' was deleted +[<<][56cc67c367945395860554][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:08:03][16/Feb/23 14:08:04][took 0.859172 secs] +[<<][56cc67c46c831922322156][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:08:04][16/Feb/23 14:08:04][took 0.082017 secs] +[>>][56cc67c480c7a095697270][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:08:04] +[<<][56cc67c480c7a095697270][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:08:04][16/Feb/23 14:08:04][took 0.040008 secs] +[<<][56cc67c4dfc50309170236][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:04][16/Feb/23 14:08:04][took 0.078015 secs] +[>>][56cc67c4f34e0936414241][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:04] +[<<][56cc67c4f34e0936414241][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:04][16/Feb/23 14:08:05][took 0.007001 secs] +[<<][56cc67c51235f022653877][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:05][16/Feb/23 14:08:05][took 0.069014 secs] +[>>][56cc67c5230f5812006252][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:05] +[<<][56cc67c5230f5812006252][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:08:05][16/Feb/23 14:08:05][took 0.008002 secs] +[<<][56cc67f7b515b164590797][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:08:55][16/Feb/23 14:08:55][took 0.070014 secs] +[>>][56cc67f7c66c1514345465][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:08:55] + [16/Feb/23 14:08:55][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqView.php - Line 41 +[<<][56cc67f7c66c1514345465][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:08:55][16/Feb/23 14:08:55][took 0.073014 secs] +[<<][56cc67fa3fc6a333201456][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:08:58][16/Feb/23 14:08:58][took 0.079016 secs] +[>>][56cc67fa53112563055884][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:08:58] +[<<][56cc67fa53112563055884][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/23 14:08:58][16/Feb/23 14:08:58][took 0.016004 secs] +[<<][56cc68001b70c504320648][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:04][16/Feb/23 14:09:04][took 0.073015 secs] +[>>][56cc68002d82b936826778][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:04] +[<<][56cc68002d82b936826778][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:04][16/Feb/23 14:09:04][took 0.070014 secs] +[<<][56cc68064d8c5209303483][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:10][16/Feb/23 14:09:10][took 0.069014 secs] +[>>][56cc68065ea43155013203][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:10] +[<<][56cc68065ea43155013203][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:10][16/Feb/23 14:09:10][took 0.045009 secs] +[<<][56cc680b27b2e981518794][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:09:15][16/Feb/23 14:09:15][took 0.076015 secs] +[>>][56cc680b3a41d635792007][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:09:15] +[<<][56cc680b3a41d635792007][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/23 14:09:15][16/Feb/23 14:09:15][took 0.005001 secs] +[<<][56cc680b47718250944666][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:15][16/Feb/23 14:09:15][took 0.09702 secs] +[>>][56cc680b5f5fc403163667][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:15] +[<<][56cc680b5f5fc403163667][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:15][16/Feb/23 14:09:15][took 0.05301 secs] +[<<][56cc6818855ea566132500][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:28][16/Feb/23 14:09:28][took 0.076016 secs] +[>>][56cc6818982c2615789875][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:28] + [16/Feb/23 14:09:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/23 14:09:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/23 14:09:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/23 14:09:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1023 + [16/Feb/23 14:09:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1028 + [16/Feb/23 14:09:29][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cc6818982c2615789875][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/23 14:09:28][16/Feb/23 14:09:29][took 0.654131 secs] +[<<][56cc68194e3b5183918944][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:29][16/Feb/23 14:09:29][took 0.069014 secs] +[>>][56cc68195f14b097644980][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:29] +[<<][56cc68195f14b097644980][DEFAULT][/lib/requirements/reqView.php][16/Feb/23 14:09:29][16/Feb/23 14:09:29][took 0.063012 secs] +[<<][56cc6819c0c1b937371486][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:09:29][16/Feb/23 14:09:29][took 0.081016 secs] +[>>][56cc6819d5063547618075][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:09:29] +[<<][56cc6819d5063547618075][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/23 14:09:29][16/Feb/23 14:09:29][took 0.039008 secs] +[<<][56cc681a4b59b952302715][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30][16/Feb/23 14:09:30][took 0.078015 secs] +[>>][56cc681a5ea42271839738][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30] +[<<][56cc681a5ea42271839738][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30][16/Feb/23 14:09:30][took 0.007001 secs] +[<<][56cc681a70391482731820][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30][16/Feb/23 14:09:30][took 0.086017 secs] +[>>][56cc681a85b62927967750][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30] +[<<][56cc681a85b62927967750][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/23 14:09:30][16/Feb/23 14:09:30][took 0.010002 secs] +[<<][56cd67aa1ad92991006288][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:19:54][16/Feb/24 08:19:54][took 0.13065 secs] +[<<][56cd67aa53c5a176669152][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:19:54][16/Feb/24 08:19:54][took 0.07437 secs] +[>>][56cd67aa65edc947898424][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:19:54] +[<<][56cd67aa65edc947898424][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:19:54][16/Feb/24 08:19:54][took 0.03618 secs] +[<<][56cd67b1cd2ee846022482][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01][16/Feb/24 08:20:01][took 0.075375 secs] +[>>][56cd67b1dfd4a030172946][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01] +[<<][56cd67b1dfd4a030172946][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01][16/Feb/24 08:20:01][took 0.037185 secs] +[>>][56cd67b1e8e8b401989805][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01] + [16/Feb/24 08:20:01][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56cd67b1e8e8b401989805][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:20:01][16/Feb/24 08:20:01][took 0.03015 secs] +[<<][56cd67b209de9710693964][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.07839 secs] +[>>][56cd67b21d7f9374513039][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:02] +[<<][56cd67b21d7f9374513039][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.00804 secs] +[<<][56cd67b22fe68088683541][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.083415 secs] +[>>][56cd67b24482c915399982][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:02] +[<<][56cd67b24482c915399982][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.043215 secs] +[<<][56cd67b22f2a1685666594][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.1608 secs] +[>>][56cd67b256aae235265587][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:02] +[<<][56cd67b256aae235265587][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:02][16/Feb/24 08:20:02][took 0.06231 secs] +[<<][56cd67cdf3637262239794][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/24 08:20:29][16/Feb/24 08:20:30][took 0.070126 secs] +[>>][56cd67ce10db8225132042][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/24 08:20:30] + [16/Feb/24 08:20:30][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqManageSubs.php - Line 51 + [16/Feb/24 08:20:30][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqManageSubs.php - Line 135 +[<<][56cd67ce10db8225132042][DEFAULT][/lib/requirements/reqManageSubs.php][16/Feb/24 08:20:30][16/Feb/24 08:20:30][took 0.052094 secs] +[<<][56cd67d41efd5725537455][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.059106 secs] +[>>][56cd67d42daa1335587827][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:36] +[<<][56cd67d42daa1335587827][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.006011 secs] +[<<][56cd67d4436e9460641643][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.068122 secs] +[>>][56cd67d4544ed446993300][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:36] +[<<][56cd67d4544ed446993300][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.024043 secs] +[<<][56cd67d444a7a905231720][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.112202 secs] +[>>][56cd67d4600c4186833796][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:36] +[<<][56cd67d4600c4186833796][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:20:36][16/Feb/24 08:20:36][took 0.03907 secs] +[<<][56cd6809bd888353563010][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:21:29][16/Feb/24 08:21:29][took 0.067121 secs] +[>>][56cd6809ce2a3524222624][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:21:29] +[<<][56cd6809ce2a3524222624][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:21:29][16/Feb/24 08:21:29][took 0.014025 secs] +[<<][56cd6809de4e9362115862][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:21:29][16/Feb/24 08:21:29][took 0.089161 secs] +[>>][56cd6809f4132460383212][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:21:29] +[<<][56cd6809f4132460383212][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:21:29][16/Feb/24 08:21:30][took 0.058105 secs] +[<<][56cd6809e0822571479696][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:21:29][16/Feb/24 08:21:30][took 0.178321 secs] +[>>][56cd680a18646205072339][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:21:30] +[<<][56cd680a18646205072339][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:21:30][16/Feb/24 08:21:30][took 0.009016 secs] +[<<][56cd680a529a2534181816][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30][16/Feb/24 08:21:30][took 0.097175 secs] +[>>][56cd680a6a922764634377][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30] +[<<][56cd680a6a922764634377][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30][16/Feb/24 08:21:30][took 0.009017 secs] +[<<][56cd680a7610f386781677][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30][16/Feb/24 08:21:30][took 0.064115 secs] +[>>][56cd680a86356591303825][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30] +[<<][56cd680a86356591303825][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:21:30][16/Feb/24 08:21:30][took 0.008014 secs] +[<<][56cd68116af4f148037690][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:37][16/Feb/24 08:21:37][took 0.072129 secs] +[>>][56cd68117c910844297446][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:37] +[<<][56cd68117c910844297446][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:37][16/Feb/24 08:21:37][took 0.097175 secs] +[<<][56cd681316b8c786160000][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:39][16/Feb/24 08:21:39][took 0.068123 secs] +[>>][56cd681327990640475912][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:39] +[<<][56cd681327990640475912][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:21:39][16/Feb/24 08:21:39][took 0.067121 secs] +[<<][56cd688f7458c257018169][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:43][16/Feb/24 08:23:43][took 0.10018 secs] +[>>][56cd688f8cce0628474707][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:43] +[<<][56cd688f8cce0628474707][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:43][16/Feb/24 08:23:43][took 0.052094 secs] +[<<][56cd6896224f2899204740][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:23:50][16/Feb/24 08:23:50][took 0.082147 secs] +[>>][56cd6896369bf945340998][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:23:50] +[<<][56cd6896369bf945340998][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:23:50][16/Feb/24 08:23:50][took 0.007013 secs] +[<<][56cd689648b54468933673][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:50][16/Feb/24 08:23:50][took 0.082148 secs] +[>>][56cd68965d40c438918642][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:50] +[<<][56cd68965d40c438918642][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:50][16/Feb/24 08:23:50][took 0.057102 secs] +[<<][56cd689f0d8fc412075841][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:59][16/Feb/24 08:23:59][took 0.105189 secs] +[>>][56cd689f277cb638861252][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:59] + [16/Feb/24 08:23:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 08:23:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 08:23:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 08:23:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1023 + [16/Feb/24 08:23:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1028 + [16/Feb/24 08:23:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd689f277cb638861252][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:23:59][16/Feb/24 08:23:59][took 0.559004 secs] +[<<][56cd689fb808b814558852][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:23:59][16/Feb/24 08:23:59][took 0.076137 secs] +[>>][56cd689fcb1c7996553616][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:23:59] +[<<][56cd689fcb1c7996553616][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:23:59][16/Feb/24 08:23:59][took 0.076137 secs] +[<<][56cd68a015954669754197][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.081146 secs] +[>>][56cd68a02964e410949142][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:24:00] +[<<][56cd68a02964e410949142][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.041073 secs] +[<<][56cd68a060e9e761416944][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.078141 secs] +[>>][56cd68a073fdb600150680][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00] +[<<][56cd68a073fdb600150680][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.009016 secs] +[<<][56cd68a08599c048838839][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.073131 secs] +[>>][56cd68a097f1b389507830][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00] +[<<][56cd68a097f1b389507830][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:24:00][16/Feb/24 08:24:00][took 0.008015 secs] +[<<][56cd68d42518e907459762][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:24:52][16/Feb/24 08:24:52][took 0.079142 secs] +[>>][56cd68d4386b4283572658][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:24:52] + [16/Feb/24 08:24:52][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 594 +[<<][56cd68d4386b4283572658][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:24:52][16/Feb/24 08:24:52][took 0.566017 secs] +[<<][56cd68d4cd5e4355185423][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:24:52][16/Feb/24 08:24:52][took 0.075135 secs] +[>>][56cd68d4dfb63739851048][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:24:52] +[<<][56cd68d4dfb63739851048][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:24:52][16/Feb/24 08:24:53][took 0.127229 secs] +[<<][56cd68ee5e03d327642150][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/24 08:25:18][16/Feb/24 08:25:18][took 0.071127 secs] +[>>][56cd68ee6f614186919440][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/24 08:25:18] +[<<][56cd68ee6f614186919440][DEFAULT][/lib/usermanagement/usersView.php][16/Feb/24 08:25:18][16/Feb/24 08:25:18][took 0.019034 secs] +[<<][56cd68f07e333517893562][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/24 08:25:20][16/Feb/24 08:25:20][took 0.092166 secs] +[>>][56cd68f094f22160088053][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/24 08:25:20] +[<<][56cd68f094f22160088053][DEFAULT][/lib/usermanagement/usersEdit.php][16/Feb/24 08:25:20][16/Feb/24 08:25:20][took 0.025045 secs] +[<<][56cd68f359716595644664][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.074052 secs] +[>>][56cd68f36bc43341413597][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:23] +[<<][56cd68f36bc43341413597][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.007005 secs] +[<<][56cd68f37e558157661259][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.077054 secs] +[>>][56cd68f391256399077599][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:23] +[<<][56cd68f391256399077599][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.032023 secs] +[<<][56cd68f37fccc490938493][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.131091 secs] +[>>][56cd68f3a00c8579371809][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:23] +[<<][56cd68f3a00c8579371809][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:23][16/Feb/24 08:25:23][took 0.032023 secs] +[<<][56cd68f8981bb632782724][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 08:25:28][16/Feb/24 08:25:28][took 0.072051 secs] +[>>][56cd68f8a9f16323758757][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 08:25:28] + [16/Feb/24 08:25:28][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Logout of 'admin' + [16/Feb/24 09:58:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56cd7ed610487645217416][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.015003 secs] +[<<][56cd7ed620e35290337673][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.075015 secs] +[>>][56cd7ed633b0c521258697][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:46] +[<<][56cd7ed633b0c521258697][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.007002 secs] +[<<][56cd7ed6448a2007411264][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.086017 secs] +[>>][56cd7ed659c8c104574147][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:46] +[<<][56cd7ed659c8c104574147][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.024004 secs] +[<<][56cd7ed645073426039930][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.131026 secs] +[>>][56cd7ed66542d645247443][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:46] +[<<][56cd7ed66542d645247443][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:46][16/Feb/24 09:58:46][took 0.045009 secs] +[<<][56cd7ed805646850635448][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:58:48][16/Feb/24 09:58:48][took 0.089018 secs] +[>>][56cd7ed81b5e8964523528][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:58:48] + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 09:58:48][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cd7ed81b5e8964523528][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:58:48][16/Feb/24 09:58:48][took 0.04701 secs] +[<<][56cd7edbaa9c6914187208][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 09:58:51][16/Feb/24 09:58:51][took 0.070014 secs] +[>>][56cd7edbbbf2c570628229][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 09:58:51] + [16/Feb/24 09:58:51][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/24 09:58:51][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4178 +[<<][56cd7edbbbf2c570628229][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 09:58:51][16/Feb/24 09:58:51][took 0.037007 secs] +[<<][56cd7ee4d1e05937660361][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:59:00][16/Feb/24 09:59:00][took 0.071015 secs] +[>>][56cd7ee4e336c628688300][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:59:00] + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 09:59:00][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cd7ee4e336c628688300][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 09:59:00][16/Feb/24 09:59:00][took 0.042008 secs] +[<<][56cd7ee6f040e997878962][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:59:02][16/Feb/24 09:59:03][took 0.069014 secs] +[>>][56cd7ee70d34c903240810][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:59:03] +[<<][56cd7ee70d34c903240810][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:59:03][16/Feb/24 09:59:03][took 0.006001 secs] +[<<][56cd7ee71d141064683309][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:59:03][16/Feb/24 09:59:03][took 0.082017 secs] +[>>][56cd7ee731972478556389][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:59:03] +[<<][56cd7ee731972478556389][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:59:03][16/Feb/24 09:59:03][took 0.027005 secs] +[<<][56cd7ee721795926650466][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:59:03][16/Feb/24 09:59:03][took 0.114023 secs] +[>>][56cd7ee73dccc630028354][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:59:03] +[<<][56cd7ee73dccc630028354][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:59:03][16/Feb/24 09:59:03][took 0.038008 secs] +[<<][56cd7ee8c1f48932167842][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:59:04][16/Feb/24 09:59:04][took 0.065013 secs] +[>>][56cd7ee8d2125158861889][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:59:04] +[<<][56cd7ee8d2125158861889][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:59:04][16/Feb/24 09:59:04][took 0.0070009999999999 secs] +[<<][56cd7ee8df038631964386][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:59:04][16/Feb/24 09:59:04][took 0.082017 secs] +[>>][56cd7ee8f3481624518552][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:59:04] +[<<][56cd7ee8f3481624518552][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:59:04][16/Feb/24 09:59:05][took 0.008001 secs] +[<<][56cd7ee8df808265520959][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:04][16/Feb/24 09:59:05][took 0.118024 secs] +[>>][56cd7ee9086b8853122094][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:05] +[<<][56cd7ee9086b8853122094][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:05][16/Feb/24 09:59:05][took 0.05001 secs] +[<<][56cd7ee944bc2120123282][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05][16/Feb/24 09:59:05][took 0.074014 secs] +[>>][56cd7ee956ce0925283603][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05] +[<<][56cd7ee956ce0925283603][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05][16/Feb/24 09:59:05][took 0.007001 secs] +[<<][56cd7ee9699b8173686563][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05][16/Feb/24 09:59:05][took 0.065013 secs] +[>>][56cd7ee979f7d558171138][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05] +[<<][56cd7ee979f7d558171138][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:05][16/Feb/24 09:59:05][took 0.008002 secs] +[<<][56cd7eeadcab6177836211][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:06][16/Feb/24 09:59:06][took 0.074015 secs] +[>>][56cd7eeaeefbd576741546][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:06] +[<<][56cd7eeaeefbd576741546][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:06][16/Feb/24 09:59:07][took 0.075015 secs] +[<<][56cd7eeb74348830931529][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:59:07][16/Feb/24 09:59:07][took 0.065013 secs] +[>>][56cd7eeb84526770566980][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:59:07] +[<<][56cd7eeb84526770566980][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:59:07][16/Feb/24 09:59:07][took 0.016003 secs] +[<<][56cd7ef0e40b4904823142][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:12][16/Feb/24 09:59:13][took 0.069014 secs] +[>>][56cd7ef100ff2487091432][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:13] +[<<][56cd7ef100ff2487091432][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:13][16/Feb/24 09:59:13][took 0.05001 secs] +[<<][56cd7efb79dec277953667][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:59:23][16/Feb/24 09:59:23][took 0.066014 secs] +[>>][56cd7efb89fca973071600][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:59:23] +[<<][56cd7efb89fca973071600][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:59:23][16/Feb/24 09:59:23][took 0.005001 secs] +[<<][56cd7efb97e7d517534108][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:23][16/Feb/24 09:59:23][took 0.078016 secs] +[>>][56cd7efbaaf3d621965246][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:23] +[<<][56cd7efbaaf3d621965246][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:23][16/Feb/24 09:59:23][took 0.04901 secs] +[<<][56cd7f0320a4b260395628][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:31][16/Feb/24 09:59:31][took 0.079016 secs] +[>>][56cd7f03342db104440010][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:31] + [16/Feb/24 09:59:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:59:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 09:59:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 09:59:31][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 09:59:31][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1071 + [16/Feb/24 09:59:32][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd7f03342db104440010][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:59:31][16/Feb/24 09:59:32][took 0.810162 secs] +[<<][56cd7f040e60c677579755][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.072014 secs] +[>>][56cd7f0420343687113579][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:32] +[<<][56cd7f0420343687113579][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.064012 secs] +[<<][56cd7f045a13a467844376][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.087017 secs] +[>>][56cd7f046f90c299106666][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:32] +[<<][56cd7f046f90c299106666][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.038007 secs] +[<<][56cd7f04a0e44156338379][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.070014 secs] +[>>][56cd7f04b1fc2022525785][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32] +[<<][56cd7f04b1fc2022525785][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.0070020000000001 secs] +[<<][56cd7f04cd941649988872][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.070014 secs] +[>>][56cd7f04deea7175658338][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32] +[<<][56cd7f04deea7175658338][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:59:32][16/Feb/24 09:59:32][took 0.008001 secs] +[<<][56cd8000e3d0a078550272][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:03:44][16/Feb/24 10:03:45][took 0.080008 secs] +[>>][56cd80010373a928996576][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:03:45] +[<<][56cd80010373a928996576][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:03:45][16/Feb/24 10:03:45][took 0.064006 secs] +[<<][56cd81539857c297970033][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.069007 secs] +[>>][56cd8153a930b942184638][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:23] +[<<][56cd8153a930b942184638][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.006 secs] +[<<][56cd8153bf68c194820129][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.083008 secs] +[>>][56cd8153d429c026574416][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:23] +[<<][56cd8153d429c026574416][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.026003 secs] +[<<][56cd8153c2955404663002][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.124012 secs] +[>>][56cd8153e0dc1818182395][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:23] +[<<][56cd8153e0dc1818182395][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:23][16/Feb/24 10:09:23][took 0.037004 secs] +[<<][56cd81595363f353650325][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 10:09:29][16/Feb/24 10:09:29][took 0.075008 secs] +[>>][56cd815965f27683267907][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 10:09:29] + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\testlinkPrefixTest\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 10:09:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\testlinkPrefixTest\gui\templates_c\058f5adf9a551a3d6c1b70937cbe334d9449737d.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cd815965f27683267907][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 10:09:29][16/Feb/24 10:09:29][took 0.036004 secs] +[<<][56cd815bedfef287142119][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:31][16/Feb/24 10:09:32][took 0.072007 secs] +[>>][56cd815c0bade991140098][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:32] +[<<][56cd815c0bade991140098][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:09:32][16/Feb/24 10:09:32][took 0.006001 secs] +[<<][56cd815c1c09d571701226][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:32][16/Feb/24 10:09:32][took 0.077007 secs] +[>>][56cd815c2f154308590132][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:32] +[<<][56cd815c2f154308590132][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:09:32][16/Feb/24 10:09:32][took 0.025003 secs] +[<<][56cd815c1d03d844749379][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:32][16/Feb/24 10:09:32][took 0.122012 secs] +[>>][56cd815c3b0c1595168091][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:32] +[<<][56cd815c3b0c1595168091][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:09:32][16/Feb/24 10:09:32][took 0.037004 secs] +[<<][56cd820a17409344141961][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.081008 secs] +[>>][56cd820a2b461920770916][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:12:26] +[<<][56cd820a2b461920770916][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.006001 secs] +[<<][56cd820a3ae68572019518][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.075007 secs] +[>>][56cd820a4d74f496688697][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:12:26] +[<<][56cd820a4d74f496688697][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.026003 secs] +[<<][56cd820a3d579338893747][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.128012 secs] +[>>][56cd820a5d156199508967][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:12:26] +[<<][56cd820a5d156199508967][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:12:26][16/Feb/24 10:12:26][took 0.044004 secs] +[<<][56cd820c75cb0001037498][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.081008 secs] +[>>][56cd820c89d08450300041][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:12:28] +[<<][56cd820c89d08450300041][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.008001 secs] +[<<][56cd820c973e5457763740][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.080008 secs] +[>>][56cd820caac6d749040061][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:12:28] +[<<][56cd820caac6d749040061][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.0080009999999999 secs] +[<<][56cd820c973e5021892073][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.114012 secs] +[>>][56cd820cb3529476067378][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:28] +[<<][56cd820cb3529476067378][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.046004 secs] +[<<][56cd820ce427d937018245][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:28][16/Feb/24 10:12:28][took 0.064006 secs] +[>>][56cd820cf406b268767071][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:28] +[<<][56cd820cf406b268767071][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:28][16/Feb/24 10:12:29][took 0.008001 secs] +[<<][56cd820d1d2f7380145339][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:29][16/Feb/24 10:12:29][took 0.075008 secs] +[>>][56cd820d2fbdf950470202][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:29] +[<<][56cd820d2fbdf950470202][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:29][16/Feb/24 10:12:29][took 0.008001 secs] +[<<][56cd820e1cf73350510965][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:30][16/Feb/24 10:12:30][took 0.077008 secs] +[>>][56cd820e30413493962034][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:30] +[<<][56cd820e30413493962034][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:30][16/Feb/24 10:12:30][took 0.067007 secs] +[<<][56cd820e99006077224419][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:12:30][16/Feb/24 10:12:30][took 0.075008 secs] +[>>][56cd820eabcd6572710760][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:12:30] +[<<][56cd820eabcd6572710760][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:12:30][16/Feb/24 10:12:30][took 0.017001 secs] +[<<][56cd8211ac1ea439939271][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:33][16/Feb/24 10:12:33][took 0.081008 secs] +[>>][56cd8211c062a018547509][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:33] +[<<][56cd8211c062a018547509][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:33][16/Feb/24 10:12:33][took 0.047005 secs] +[<<][56cd82148e292997876105][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:12:36][16/Feb/24 10:12:36][took 0.062006 secs] +[>>][56cd82149d8b0179197936][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:12:36] +[<<][56cd82149d8b0179197936][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:12:36][16/Feb/24 10:12:36][took 0.005 secs] +[<<][56cd8214b0580714034576][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:36][16/Feb/24 10:12:36][took 0.075007 secs] +[>>][56cd8214c2e67833224023][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:36] +[<<][56cd8214c2e67833224023][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:36][16/Feb/24 10:12:36][took 0.052005 secs] +[<<][56cd82172c145305850630][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.078008 secs] +[>>][56cd82173f5e5048338741][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:39] + [16/Feb/24 10:12:39][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:12:39][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:12:39][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:12:39][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 10:12:39][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1071 + [16/Feb/24 10:12:39][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: subbedUsers - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1093 + [16/Feb/24 10:12:39][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd82173f5e5048338741][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.079008 secs] +[<<][56cd8217597e8820469808][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.079008 secs] +[>>][56cd82176d070674569356][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:39] +[<<][56cd82176d070674569356][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.063006 secs] +[<<][56cd8217a08bd612965687][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.080008 secs] +[>>][56cd8217b452d726012354][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:39] +[<<][56cd8217b452d726012354][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.038004 secs] +[<<][56cd8217e23a0057697971][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:39][16/Feb/24 10:12:39][took 0.068007 secs] +[>>][56cd8217f312f785563209][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:39] +[<<][56cd8217f312f785563209][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:39][16/Feb/24 10:12:40][took 0.0080009999999999 secs] +[<<][56cd82181332f128695026][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:40][16/Feb/24 10:12:40][took 0.070007 secs] +[>>][56cd8218244a6981982804][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:40] +[<<][56cd8218244a6981982804][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:12:40][16/Feb/24 10:12:40][took 0.008001 secs] +[<<][56cd82a83458e770790035][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:04][16/Feb/24 10:15:04][took 0.102 secs] +[>>][56cd82a84dbce178743955][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:04] +[<<][56cd82a84dbce178743955][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:04][16/Feb/24 10:15:04][took 0.07 secs] +[<<][56cd82ae335ee020946574][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:15:10][16/Feb/24 10:15:10][took 0.068 secs] +[>>][56cd82ae44376298697398][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:15:10] +[<<][56cd82ae44376298697398][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:15:10][16/Feb/24 10:15:10][took 0.005 secs] +[<<][56cd82ae4c45e388943331][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:10][16/Feb/24 10:15:10][took 0.076 secs] +[>>][56cd82ae5f50e551409834][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:10] +[<<][56cd82ae5f50e551409834][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:10][16/Feb/24 10:15:10][took 0.048 secs] +[<<][56cd82b0dc8f6795067268][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:12][16/Feb/24 10:15:12][took 0.081 secs] +[>>][56cd82b0f0d2e710883567][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:12] + [16/Feb/24 10:15:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:15:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:15:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:15:13][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 10:15:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1071 + [16/Feb/24 10:15:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd82b0f0d2e710883567][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:15:12][16/Feb/24 10:15:13][took 0.621 secs] +[<<][56cd82b19ecae792096287][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:15:13][16/Feb/24 10:15:13][took 0.069 secs] +[>>][56cd82b1b0206030914323][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:15:13] +[<<][56cd82b1b0206030914323][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:15:13][16/Feb/24 10:15:13][took 0.068 secs] +[<<][56cd82b1e3e26104930522][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:15:13][16/Feb/24 10:15:14][took 0.079 secs] +[>>][56cd82b20384e170966545][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:15:14] +[<<][56cd82b20384e170966545][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:15:14][16/Feb/24 10:15:14][took 0.039 secs] +[<<][56cd82b23264e233873756][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14][16/Feb/24 10:15:14][took 0.071 secs] +[>>][56cd82b243f8e876699314][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14] +[<<][56cd82b243f8e876699314][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14][16/Feb/24 10:15:14][took 0.008 secs] +[<<][56cd82b25aebe832914729][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14][16/Feb/24 10:15:14][took 0.07 secs] +[>>][56cd82b26c416533472798][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14] +[<<][56cd82b26c416533472798][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:15:14][16/Feb/24 10:15:14][took 0.019 secs] +[<<][56cd846e31e7e314599213][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:22:38][16/Feb/24 10:22:38][took 0.086 secs] +[>>][56cd846e47256013982021][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:22:38] +[<<][56cd846e47256013982021][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:22:38][16/Feb/24 10:22:38][took 0.068 secs] +[<<][56cd84a139f66600506506][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:23:29][16/Feb/24 10:23:29][took 0.071 secs] +[>>][56cd84a14b4be654922014][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:23:29] +[<<][56cd84a14b4be654922014][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:23:29][16/Feb/24 10:23:29][took 0.006 secs] +[<<][56cd84a15d5ce977254467][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:29][16/Feb/24 10:23:29][took 0.08 secs] +[>>][56cd84a170e4e408320547][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:29] +[<<][56cd84a170e4e408320547][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:29][16/Feb/24 10:23:29][took 0.053 secs] +[<<][56cd84b170e4e810981340][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:45][16/Feb/24 10:23:45][took 0.087 secs] +[>>][56cd84b1869f6223993109][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:45] + [16/Feb/24 10:23:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:23:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:23:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:23:45][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 10:23:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1071 + [16/Feb/24 10:23:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd84b1869f6223993109][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:23:45][16/Feb/24 10:23:46][took 0.643 secs] +[<<][56cd84b237086309350761][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.087 secs] +[>>][56cd84b24cc2e796777166][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:23:46] +[<<][56cd84b24cc2e796777166][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.075 secs] +[<<][56cd84b28d756244259016][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.093 secs] +[>>][56cd84b2a4686796046852][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:23:46] +[<<][56cd84b2a4686796046852][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.047 secs] +[<<][56cd84b2d8e5e641254124][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.079 secs] +[>>][56cd84b2ec2f6175758328][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:46] +[<<][56cd84b2ec2f6175758328][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:46][16/Feb/24 10:23:46][took 0.009 secs] +[<<][56cd84b30960e751802812][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:47][16/Feb/24 10:23:47][took 0.073 secs] +[>>][56cd84b31b71e327667895][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:47] +[<<][56cd84b31b71e327667895][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:23:47][16/Feb/24 10:23:47][took 0.009 secs] +[<<][56cd85119f866938197499][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:21][16/Feb/24 10:25:21][took 0.082 secs] +[>>][56cd8511b4086828268435][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:21] +[<<][56cd8511b4086828268435][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:21][16/Feb/24 10:25:21][took 0.057 secs] +[<<][56cd8515535a6565374715][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:25:25][16/Feb/24 10:25:25][took 0.078 secs] +[>>][56cd851566a3e008121085][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:25:25] +[<<][56cd851566a3e008121085][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:25:25][16/Feb/24 10:25:25][took 0.007 secs] +[<<][56cd8515750b6089161920][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:25][16/Feb/24 10:25:25][took 0.083 secs] +[>>][56cd8515898d6731867138][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:25] +[<<][56cd8515898d6731867138][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:25][16/Feb/24 10:25:25][took 0.054 secs] +[<<][56cd851e10f26741725137][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:34][16/Feb/24 10:25:34][took 0.085 secs] +[>>][56cd851e25f16299303625][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:34] + [16/Feb/24 10:25:34][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:25:34][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:25:34][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:25:34][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "d") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "d") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 10:25:34][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1072 + [16/Feb/24 10:25:34][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd851e25f16299303625][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:25:34][16/Feb/24 10:25:34][took 0.628 secs] +[<<][56cd851ec7136844504999][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:25:34][16/Feb/24 10:25:34][took 0.08 secs] +[>>][56cd851edb186789973925][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:25:34] +[<<][56cd851edb186789973925][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:25:34][16/Feb/24 10:25:34][took 0.073 secs] +[<<][56cd851f22866507769029][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.095 secs] +[>>][56cd851f39f66849469379][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:25:35] +[<<][56cd851f39f66849469379][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.043 secs] +[<<][56cd851f6991e412229081][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.101 secs] +[>>][56cd851f82b76531695809][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35] +[<<][56cd851f82b76531695809][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.008 secs] +[<<][56cd851f8f696908892339][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.077 secs] +[>>][56cd851fa2746736662353][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35] +[<<][56cd851fa2746736662353][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:25:35][16/Feb/24 10:25:35][took 0.009 secs] +[<<][56cd856db11a6740126381][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:53][16/Feb/24 10:26:53][took 0.085 secs] +[>>][56cd856dc6196630823570][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:53] +[<<][56cd856dc6196630823570][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:53][16/Feb/24 10:26:53][took 0.05 secs] +[<<][56cd8572f0176537488894][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:26:58][16/Feb/24 10:26:59][took 0.104 secs] +[>>][56cd857315d46952816715][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:26:59] +[<<][56cd857315d46952816715][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:26:59][16/Feb/24 10:26:59][took 0.005 secs] +[<<][56cd857328626748215618][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:59][16/Feb/24 10:26:59][took 0.089 secs] +[>>][56cd85733e5b6609417681][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:59] +[<<][56cd85733e5b6609417681][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:26:59][16/Feb/24 10:26:59][took 0.052 secs] +[<<][56cd85790fb9e735874614][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:27:05][16/Feb/24 10:27:05][took 0.079 secs] +[>>][56cd857923806125991202][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:27:05] + [16/Feb/24 10:27:05][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:27:05][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:27:05][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:27:05][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlinkprefixtest.req_notify_assignments' doesn't exist - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "e") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM req_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "e") ORDER BY login +Query failed: errorcode[1146] + errormsg:Table 'testlinkprefixtest.req_notify_assignments' doesn't exist + [16/Feb/24 10:27:05][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1072 + [16/Feb/24 10:27:05][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd857923806125991202][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:27:05][16/Feb/24 10:27:05][took 0.634 secs] +[<<][56cd8579c5dae014425321][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:27:05][16/Feb/24 10:27:05][took 0.082 secs] +[>>][56cd8579da1e6964618160][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:27:05] +[<<][56cd8579da1e6964618160][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:27:05][16/Feb/24 10:27:05][took 0.066 secs] +[<<][56cd857a1a396699167635][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.082 secs] +[>>][56cd857a2ebb6013929550][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:27:06] +[<<][56cd857a2ebb6013929550][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.041 secs] +[<<][56cd857a63b5e560879419][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.112 secs] +[>>][56cd857a7f8ae827111937][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06] +[<<][56cd857a7f8ae827111937][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.013 secs] +[<<][56cd857a944b6150451589][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.076 secs] +[>>][56cd857aa717e560666228][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06] +[<<][56cd857aa717e560666228][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:27:06][16/Feb/24 10:27:06][took 0.007 secs] +[<<][56cd85f179aee549858144][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.08 secs] +[>>][56cd85f18d756777656467][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:29:05] +[<<][56cd85f18d756777656467][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.006 secs] +[<<][56cd85f1a0fd6307658405][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.106 secs] +[>>][56cd85f1bade6306047820][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:29:05] +[<<][56cd85f1bade6306047820][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.031 secs] +[<<][56cd85f1a429e952173645][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.182 secs] +[>>][56cd85f1d115e344461627][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:29:05] +[<<][56cd85f1d115e344461627][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:29:05][16/Feb/24 10:29:05][took 0.049 secs] +[<<][56cd85f32341e271915553][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.072 secs] +[>>][56cd85f334d5e180906621][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:29:07] +[<<][56cd85f334d5e180906621][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.008 secs] +[<<][56cd85f3437be301801435][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.082 secs] +[>>][56cd85f357bf6402930062][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:07] +[<<][56cd85f357bf6402930062][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.04 secs] +[<<][56cd85f344f2e371598801][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.145 secs] +[>>][56cd85f36897e083727892][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:29:07] +[<<][56cd85f36897e083727892][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.013 secs] +[<<][56cd85f3a0bee740674473][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.08 secs] +[>>][56cd85f3b4856784104958][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07] +[<<][56cd85f3b4856784104958][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.008 secs] +[<<][56cd85f3c4e0e623556582][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.072 secs] +[>>][56cd85f3d6b36245804326][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07] +[<<][56cd85f3d6b36245804326][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:07][16/Feb/24 10:29:07][took 0.008 secs] +[<<][56cd85f4ae6ae933092337][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:08][16/Feb/24 10:29:08][took 0.096 secs] +[>>][56cd85f4c5dae586610589][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:08] +[<<][56cd85f4c5dae586610589][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:08][16/Feb/24 10:29:08][took 0.08 secs] +[<<][56cd85f52247e566275217][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:29:09][16/Feb/24 10:29:09][took 0.078 secs] +[>>][56cd85f535916444766410][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:29:09] +[<<][56cd85f535916444766410][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:29:09][16/Feb/24 10:29:09][took 0.016 secs] +[<<][56cd85fa66656237938805][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:14][16/Feb/24 10:29:14][took 0.086 secs] +[>>][56cd85fa7ba2e762957774][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:14] +[<<][56cd85fa7ba2e762957774][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:14][16/Feb/24 10:29:14][took 0.049 secs] +[<<][56cd85fdd2cb6201282383][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:29:17][16/Feb/24 10:29:17][took 0.062 secs] +[>>][56cd85fde26b6558245874][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:29:17] +[<<][56cd85fde26b6558245874][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:29:17][16/Feb/24 10:29:17][took 0.005 secs] +[<<][56cd85fe0672e556712100][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:18][16/Feb/24 10:29:18][took 0.081 secs] +[>>][56cd85fe1a77e216935100][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:18] +[<<][56cd85fe1a77e216935100][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:18][16/Feb/24 10:29:18][took 0.047 secs] +[<<][56cd86068eade277454930][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:26][16/Feb/24 10:29:26][took 0.078 secs] +[>>][56cd8606a1f76853968547][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:26] + [16/Feb/24 10:29:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:29:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:29:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:29:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: reqCommands::$tables - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1051 + [16/Feb/24 10:29:26][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login' at line 1 + [16/Feb/24 10:29:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1072 + [16/Feb/24 10:29:27][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd8606a1f76853968547][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:29:26][16/Feb/24 10:29:27][took 0.695 secs] +[<<][56cd86075f50e767722212][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:27][16/Feb/24 10:29:27][took 0.07 secs] +[>>][56cd860770e4e554979076][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:27] +[<<][56cd860770e4e554979076][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:29:27][16/Feb/24 10:29:27][took 0.067 secs] +[<<][56cd8607a429e593460814][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:27][16/Feb/24 10:29:27][took 0.075 secs] +[>>][56cd8607b6796911571094][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:27] +[<<][56cd8607b6796911571094][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:29:27][16/Feb/24 10:29:27][took 0.039 secs] +[<<][56cd8607e49de255819662][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:27][16/Feb/24 10:29:28][took 0.078 secs] +[>>][56cd860803c36278713161][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28] +[<<][56cd860803c36278713161][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28][16/Feb/24 10:29:28][took 0.011 secs] +[<<][56cd860815576312091082][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28][16/Feb/24 10:29:28][took 0.087 secs] +[>>][56cd86082b11e480711939][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28] +[<<][56cd86082b11e480711939][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:29:28][16/Feb/24 10:29:28][took 0.009 secs] +[<<][56cd866761e4e614120595][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:03][16/Feb/24 10:31:03][took 0.069007 secs] +[>>][56cd866772fc5805692064][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:03] +[<<][56cd866772fc5805692064][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:03][16/Feb/24 10:31:03][took 0.049005 secs] +[<<][56cd866a4527f470526210][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:31:06][16/Feb/24 10:31:06][took 0.070007 secs] +[>>][56cd866a567de490609871][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:31:06] +[<<][56cd866a567de490609871][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:31:06][16/Feb/24 10:31:06][took 0.005 secs] +[<<][56cd866a67955861598628][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:06][16/Feb/24 10:31:06][took 0.084008 secs] +[>>][56cd866a7c565652022082][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:06] +[<<][56cd866a7c565652022082][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:06][16/Feb/24 10:31:06][took 0.049005 secs] +[<<][56cd8672bf6f1720006504][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:14][16/Feb/24 10:31:14][took 0.083008 secs] +[>>][56cd8672d3f19847777464][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:14] + [16/Feb/24 10:31:14][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:31:14][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:31:14][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:31:14][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: reqCommands::$tables - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1051 + [16/Feb/24 10:31:14][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login' at line 1 + [16/Feb/24 10:31:14][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1072 + [16/Feb/24 10:31:15][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd8672d3f19847777464][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:31:14][16/Feb/24 10:31:15][took 0.824082 secs] +[<<][56cd8673b2847498174380][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:31:15][16/Feb/24 10:31:15][took 0.068007 secs] +[>>][56cd8673c39be145933763][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:31:15] +[<<][56cd8673c39be145933763][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:31:15][16/Feb/24 10:31:15][took 0.068007 secs] +[<<][56cd86740a8e7710223522][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.074007 secs] +[>>][56cd86741c9fe714090070][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:31:16] +[<<][56cd86741c9fe714090070][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.038004 secs] +[<<][56cd86744a489708027979][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.068007 secs] +[>>][56cd86745b600702250138][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16] +[<<][56cd86745b600702250138][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.008 secs] +[<<][56cd867477b2b396438462][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.066007 secs] +[>>][56cd8674884d2390753107][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16] +[<<][56cd8674884d2390753107][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:31:16][16/Feb/24 10:31:16][took 0.010001 secs] +[<<][56cd86c237ad8937818253][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:34][16/Feb/24 10:32:34][took 0.083009 secs] +[>>][56cd86c24c6e9252812598][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:34] +[<<][56cd86c24c6e9252812598][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:34][16/Feb/24 10:32:34][took 0.10201 secs] +[<<][56cd86c3e29e2992075607][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:35][16/Feb/24 10:32:36][took 0.078008 secs] +[>>][56cd86c401c42281096520][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:36] +[<<][56cd86c401c42281096520][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:36][16/Feb/24 10:32:36][took 0.057006 secs] +[<<][56cd86c6aa49f768688974][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:32:38][16/Feb/24 10:32:38][took 0.080008 secs] +[>>][56cd86c6be10f653437997][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:32:38] +[<<][56cd86c6be10f653437997][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:32:38][16/Feb/24 10:32:38][took 0.008001 secs] +[<<][56cd86c6d0227775018591][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:38][16/Feb/24 10:32:38][took 0.087008 secs] +[>>][56cd86c6e59ef483010632][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:38] +[<<][56cd86c6e59ef483010632][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:38][16/Feb/24 10:32:38][took 0.056006 secs] +[<<][56cd86ca3bc7a433127714][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:42][16/Feb/24 10:32:42][took 0.084008 secs] +[>>][56cd86ca5088a322121118][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:42] + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: reqCommands::$tables - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1051 + [16/Feb/24 10:32:42][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'WHERE test_project_id = 1 AND field_id = 1 AND field_value = "c") ORDER BY login' at line 1 + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: reqCommands::$tables - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1071 + [16/Feb/24 10:32:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1072 + [16/Feb/24 10:32:42][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd86ca5088a322121118][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:32:42][16/Feb/24 10:32:42][took 0.655066 secs] +[<<][56cd86cb03a57670634295][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.084008 secs] +[>>][56cd86cb1827f259926196][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:43] +[<<][56cd86cb1827f259926196][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.078008 secs] +[<<][56cd86cb50506721303396][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.10101 secs] +[>>][56cd86cb69769173410392][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:32:43] +[<<][56cd86cb69769173410392][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.045004 secs] +[<<][56cd86cb9df56130899100][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.080008 secs] +[>>][56cd86cbb1bc6643331448][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43] +[<<][56cd86cbb1bc6643331448][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.011001 secs] +[<<][56cd86cbc3125091890895][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.085009 secs] +[>>][56cd86cbd811e703745602][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43] +[<<][56cd86cbd811e703745602][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:32:43][16/Feb/24 10:32:43][took 0.010001 secs] +[<<][56cd8b9b9094f153168572][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:53:15][16/Feb/24 10:53:15][took 0.075 secs] +[>>][56cd8b9ba322f492903565][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:53:15] +[<<][56cd8b9ba322f492903565][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:53:15][16/Feb/24 10:53:15][took 0.076 secs] +[<<][56cd8b9dcf537161917222][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:17][16/Feb/24 10:53:17][took 0.08 secs] +[>>][56cd8b9de319f079635613][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:17] +[<<][56cd8b9de319f079635613][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:17][16/Feb/24 10:53:17][took 0.046 secs] +[<<][56cd8ba1d4b27249671944][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:53:21][16/Feb/24 10:53:21][took 0.074 secs] +[>>][56cd8ba1e7407297582328][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:53:21] +[<<][56cd8ba1e7407297582328][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:53:21][16/Feb/24 10:53:21][took 0.006 secs] +[<<][56cd8ba1f1bff406923615][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:21][16/Feb/24 10:53:22][took 0.075 secs] +[>>][56cd8ba21029f734274206][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:22] +[<<][56cd8ba21029f734274206][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:22][16/Feb/24 10:53:22][took 0.049 secs] +[<<][56cd8ba7a499f530441553][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:27][16/Feb/24 10:53:27][took 0.078 secs] +[>>][56cd8ba7b7a4f299082667][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:27] + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: args - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Trying to get property of non-object - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: fieldMetadata - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4258 + [16/Feb/24 10:53:27][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: reqState - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4259 +[<<][56cd8ba7b7a4f299082667][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:53:27][16/Feb/24 10:53:27][took 0.052 secs] +[<<][56cd8bd2d6297530107294][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:10][16/Feb/24 10:54:10][took 0.072 secs] +[>>][56cd8bd2e7fbf222309719][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:10] +[<<][56cd8bd2e7fbf222309719][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:10][16/Feb/24 10:54:10][took 0.006 secs] +[<<][56cd8bd30b47f401145426][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:11][16/Feb/24 10:54:11][took 0.08 secs] +[>>][56cd8bd31f0e7816724844][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:11] +[<<][56cd8bd31f0e7816724844][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:11][16/Feb/24 10:54:11][took 0.027 secs] +[<<][56cd8bd30d3bf190961499][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:11][16/Feb/24 10:54:11][took 0.129 secs] +[>>][56cd8bd32d377189191455][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:11] +[<<][56cd8bd32d377189191455][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:11][16/Feb/24 10:54:11][took 0.049 secs] +[<<][56cd8bd4e878f010228337][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:12][16/Feb/24 10:54:13][took 0.065 secs] +[>>][56cd8bd50471f727345881][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:13] +[<<][56cd8bd50471f727345881][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.007 secs] +[<<][56cd8bd5125c7144770524][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.082 secs] +[>>][56cd8bd526617731192848][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:13] +[<<][56cd8bd526617731192848][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.045 secs] +[<<][56cd8bd514cd7459124654][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.15 secs] +[>>][56cd8bd539e97049512230][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:13] +[<<][56cd8bd539e97049512230][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.009 secs] +[<<][56cd8bd569467736402605][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.086 secs] +[>>][56cd8bd57e457406607681][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13] +[<<][56cd8bd57e457406607681][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.009 secs] +[<<][56cd8bd58edf7624650333][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.068 secs] +[>>][56cd8bd59fb7f200421928][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13] +[<<][56cd8bd59fb7f200421928][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:13][16/Feb/24 10:54:13][took 0.008 secs] +[<<][56cd8bd65020f743212459][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:14][16/Feb/24 10:54:14][took 0.069 secs] +[>>][56cd8bd660f97177389853][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:14] +[<<][56cd8bd660f97177389853][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:14][16/Feb/24 10:54:14][took 0.07 secs] +[<<][56cd8bd94fa3f779892143][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:17][16/Feb/24 10:54:17][took 0.082 secs] +[>>][56cd8bd963e77992690995][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:17] +[<<][56cd8bd963e77992690995][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:17][16/Feb/24 10:54:17][took 0.047 secs] +[<<][56cd8bde6dab7424392330][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:22][16/Feb/24 10:54:22][took 0.082 secs] +[>>][56cd8bde81eef041928847][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:22] +[<<][56cd8bde81eef041928847][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:22][16/Feb/24 10:54:22][took 0.006 secs] +[<<][56cd8bde8cacf989847583][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:22][16/Feb/24 10:54:22][took 0.086 secs] +[>>][56cd8bdea1ea7471425047][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:22] +[<<][56cd8bdea1ea7471425047][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:22][16/Feb/24 10:54:22][took 0.048 secs] +[<<][56cd8be265db7570989750][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:26][16/Feb/24 10:54:26][took 0.084 secs] +[>>][56cd8be27a9bf706750949][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:26] + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: args - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Trying to get property of non-object - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: fieldMetadata - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4258 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: reqState - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4259 + [16/Feb/24 10:54:26][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: db - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4260 +[<<][56cd8be27a9bf706750949][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:26][16/Feb/24 10:54:26][took 0.055 secs] +[<<][56cd8bf3e54c7759747475][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:43][16/Feb/24 10:54:44][took 0.068 secs] +[>>][56cd8bf40200f129944836][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:44] +[<<][56cd8bf40200f129944836][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:54:44][16/Feb/24 10:54:44][took 0.005 secs] +[<<][56cd8bf4148ef419179618][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:44][16/Feb/24 10:54:44][took 0.087 secs] +[>>][56cd8bf42a0af029097397][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:44] +[<<][56cd8bf42a0af029097397][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:54:44][16/Feb/24 10:54:44][took 0.026 secs] +[<<][56cd8bf416c17633052113][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:44][16/Feb/24 10:54:44][took 0.131 secs] +[>>][56cd8bf43739f816732487][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:44] +[<<][56cd8bf43739f816732487][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:54:44][16/Feb/24 10:54:44][took 0.043 secs] +[<<][56cd8bf5a1ea7782305163][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.071 secs] +[>>][56cd8bf5b37e7841854811][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:45] +[<<][56cd8bf5b37e7841854811][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.0069999999999999 secs] +[<<][56cd8bf5bfb37872195473][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.082 secs] +[>>][56cd8bf5d4357711942735][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:45] +[<<][56cd8bf5d4357711942735][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.04 secs] +[<<][56cd8bf5bf367640027257][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.149 secs] +[>>][56cd8bf5e3d57097627720][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:45] +[<<][56cd8bf5e3d57097627720][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:54:45][16/Feb/24 10:54:45][took 0.009 secs] +[<<][56cd8bf62140f672413110][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46][16/Feb/24 10:54:46][took 0.076 secs] +[>>][56cd8bf6340d7671579485][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46] +[<<][56cd8bf6340d7671579485][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46][16/Feb/24 10:54:46][took 0.008 secs] +[<<][56cd8bf6469b7959763167][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46][16/Feb/24 10:54:46][took 0.067 secs] +[>>][56cd8bf65773f264737831][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46] +[<<][56cd8bf65773f264737831][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:46][16/Feb/24 10:54:46][took 0.008 secs] +[<<][56cd8bf722797538076611][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:47][16/Feb/24 10:54:47][took 0.075 secs] +[>>][56cd8bf735077337209443][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:47] +[<<][56cd8bf735077337209443][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:47][16/Feb/24 10:54:47][took 0.079 secs] +[<<][56cd8bf7a034f617908426][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:54:47][16/Feb/24 10:54:47][took 0.068 secs] +[>>][56cd8bf7b0cef376797715][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:54:47] +[<<][56cd8bf7b0cef376797715][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:54:47][16/Feb/24 10:54:47][took 0.016 secs] +[<<][56cd8bf8a12ef104531816][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:48][16/Feb/24 10:54:48][took 0.079 secs] +[>>][56cd8bf8b4b6f641113642][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:48] +[<<][56cd8bf8b4b6f641113642][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:48][16/Feb/24 10:54:48][took 0.048 secs] +[<<][56cd8bfbbb0ff641841859][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:51][16/Feb/24 10:54:51][took 0.079 secs] +[>>][56cd8bfbce97f110448149][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:51] +[<<][56cd8bfbce97f110448149][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:54:51][16/Feb/24 10:54:51][took 0.006 secs] +[<<][56cd8bfbd9947701206112][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:51][16/Feb/24 10:54:51][took 0.083 secs] +[>>][56cd8bfbee167994797801][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:51] +[<<][56cd8bfbee167994797801][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:51][16/Feb/24 10:54:52][took 0.05 secs] +[<<][56cd8c029ebdf651094738][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:58][16/Feb/24 10:54:58][took 0.077 secs] +[>>][56cd8c02b1c8f027581003][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:58] + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: args - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Trying to get property of non-object - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: fieldMetadata - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4258 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: reqState - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4259 + [16/Feb/24 10:54:58][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 + [16/Feb/24 10:54:58][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1067 + [16/Feb/24 10:54:59][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd8c02b1c8f027581003][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:54:58][16/Feb/24 10:54:59][took 0.65 secs] +[<<][56cd8c0364647615484920][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:59][16/Feb/24 10:54:59][took 0.076 secs] +[>>][56cd8c037730f200087373][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:59] +[<<][56cd8c037730f200087373][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:54:59][16/Feb/24 10:54:59][took 0.07 secs] +[<<][56cd8c03ab6ff315479333][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:59][16/Feb/24 10:54:59][took 0.09 secs] +[>>][56cd8c03c1a77296900558][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:59] +[<<][56cd8c03c1a77296900558][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:54:59][16/Feb/24 10:54:59][took 0.037 secs] +[<<][56cd8c03ecddf722641570][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:54:59][16/Feb/24 10:55:00][took 0.07 secs] +[>>][56cd8c040a0f7746547220][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00] +[<<][56cd8c040a0f7746547220][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00][16/Feb/24 10:55:00][took 0.008 secs] +[<<][56cd8c042528f254785716][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00][16/Feb/24 10:55:00][took 0.064 secs] +[>>][56cd8c043545f164508480][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00] +[<<][56cd8c043545f164508480][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:00][16/Feb/24 10:55:00][took 0.007 secs] +[<<][56cd8c3966587453979230][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.068 secs] +[>>][56cd8c39776f7561536441][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:55:53] +[<<][56cd8c39776f7561536441][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.006 secs] +[<<][56cd8c398a3bf529183128][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.086 secs] +[>>][56cd8c399fb7f710522593][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:55:53] +[<<][56cd8c399fb7f710522593][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.028 secs] +[<<][56cd8c399094f923827235][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.121 secs] +[>>][56cd8c39ae5df682084414][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:55:53] +[<<][56cd8c39ae5df682084414][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 10:55:53][16/Feb/24 10:55:53][took 0.043 secs] +[<<][56cd8c3b6bf5f510248688][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.071 secs] +[>>][56cd8c3b7d4b7451551416][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:55:55] +[<<][56cd8c3b7d4b7451551416][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.009 secs] +[<<][56cd8c3b8b35f238063666][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.088 secs] +[>>][56cd8c3ba12ef491510660][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:55:55] +[<<][56cd8c3ba12ef491510660][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.009 secs] +[<<][56cd8c3b8bf17118434267][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.121 secs] +[>>][56cd8c3ba9ba7937246484][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:55:55] +[<<][56cd8c3ba9ba7937246484][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:55:55][16/Feb/24 10:55:55][took 0.052 secs] +[<<][56cd8c3bedd7f534488968][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:55][16/Feb/24 10:55:56][took 0.068 secs] +[>>][56cd8c3c0a8c7976849746][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56] +[<<][56cd8c3c0a8c7976849746][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56][16/Feb/24 10:55:56][took 0.009 secs] +[<<][56cd8c3c246d7962310688][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56][16/Feb/24 10:55:56][took 0.076 secs] +[>>][56cd8c3c3739f507191639][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56] +[<<][56cd8c3c3739f507191639][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:55:56][16/Feb/24 10:55:56][took 0.009 secs] +[<<][56cd8c3d04b07547860746][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:55:57][16/Feb/24 10:55:57][took 0.083 secs] +[>>][56cd8c3d1970f167292458][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:55:57] +[<<][56cd8c3d1970f167292458][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:55:57][16/Feb/24 10:55:57][took 0.075 secs] +[<<][56cd8c3d75b9f551958964][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:55:57][16/Feb/24 10:55:57][took 0.068 secs] +[>>][56cd8c3d86927308336679][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:55:57] +[<<][56cd8c3d86927308336679][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 10:55:57][16/Feb/24 10:55:57][took 0.016 secs] +[<<][56cd8c3f0e35f195622399][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:55:59][16/Feb/24 10:55:59][took 0.087 secs] +[>>][56cd8c3f23b1f229634360][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:55:59] +[<<][56cd8c3f23b1f229634360][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:55:59][16/Feb/24 10:55:59][took 0.048 secs] +[<<][56cd8c5083e2f726493228][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:56:16][16/Feb/24 10:56:16][took 0.065 secs] +[>>][56cd8c50943e7135932973][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:56:16] +[<<][56cd8c50943e7135932973][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:56:16][16/Feb/24 10:56:16][took 0.0049999999999999 secs] +[<<][56cd8c50a2a5f264710446][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:16][16/Feb/24 10:56:16][took 0.077 secs] +[>>][56cd8c50b5ef7049842644][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:16] +[<<][56cd8c50b5ef7049842644][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:16][16/Feb/24 10:56:16][took 0.048 secs] +[<<][56cd8c569ff67930179866][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:22][16/Feb/24 10:56:22][took 0.076 secs] +[>>][56cd8c56b2847196218583][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:22] + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: args - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Trying to get property of non-object - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: fieldMetadata - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4258 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: reqState - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4259 + [16/Feb/24 10:56:22][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 + [16/Feb/24 10:56:22][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1068 + [16/Feb/24 10:56:23][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd8c56b2847196218583][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:56:22][16/Feb/24 10:56:23][took 0.603 secs] +[<<][56cd8c575a237332432027][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:56:23][16/Feb/24 10:56:23][took 0.067 secs] +[>>][56cd8c576abd7400997159][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:56:23] +[<<][56cd8c576abd7400997159][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:56:23][16/Feb/24 10:56:23][took 0.072 secs] +[<<][56cd8c57a3617467069242][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:56:23][16/Feb/24 10:56:23][took 0.078 secs] +[>>][56cd8c57b66c7723827881][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:56:23] +[<<][56cd8c57b66c7723827881][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:56:23][16/Feb/24 10:56:23][took 0.037 secs] +[<<][56cd8c57e5c97952849229][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:23][16/Feb/24 10:56:24][took 0.074 secs] +[>>][56cd8c5803b67646409956][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24] +[<<][56cd8c5803b67646409956][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24][16/Feb/24 10:56:24][took 0.008 secs] +[<<][56cd8c5816c17494315590][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24][16/Feb/24 10:56:24][took 0.072 secs] +[>>][56cd8c5828557011235840][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24] +[<<][56cd8c5828557011235840][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:56:24][16/Feb/24 10:56:24][took 0.008 secs] +[<<][56cd8c8dc35cf545785464][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:17][16/Feb/24 10:57:17][took 0.07 secs] +[>>][56cd8c8dd4f0f082982969][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:17] +[<<][56cd8c8dd4f0f082982969][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:17][16/Feb/24 10:57:17][took 0.085 secs] +[<<][56cd8c8fbc487243620271][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:19][16/Feb/24 10:57:19][took 0.083 secs] +[>>][56cd8c8fd0ca7066215756][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:19] +[<<][56cd8c8fd0ca7066215756][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:19][16/Feb/24 10:57:19][took 0.049 secs] +[<<][56cd8c9301c27565140942][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:57:23][16/Feb/24 10:57:23][took 0.066 secs] +[>>][56cd8c93121df504709733][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:57:23] +[<<][56cd8c93121df504709733][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 10:57:23][16/Feb/24 10:57:23][took 0.005 secs] +[<<][56cd8c9323b1f416946494][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:23][16/Feb/24 10:57:23][took 0.073 secs] +[>>][56cd8c9336017726044530][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:23] +[<<][56cd8c9336017726044530][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:23][16/Feb/24 10:57:23][took 0.049 secs] +[<<][56cd8c95469b7093049412][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:25][16/Feb/24 10:57:25][took 0.083 secs] +[>>][56cd8c955adef664679197][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:25] + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: args - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Trying to get property of non-object - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4257 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: fieldMetadata - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4258 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: reqState - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4259 + [16/Feb/24 10:57:25][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = AND field_id = AND field_value = "") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AND field_id = AND field_value = "") ORDER BY login' at line 1 + [16/Feb/24 10:57:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1068 + [16/Feb/24 10:57:25][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd8c955adef664679197][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 10:57:25][16/Feb/24 10:57:25][took 0.587 secs] +[<<][56cd8c95f23cf300370508][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:25][16/Feb/24 10:57:26][took 0.069 secs] +[>>][56cd8c960f2ff856602968][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:26] +[<<][56cd8c960f2ff856602968][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.072 secs] +[<<][56cd8c9643ebf124191194][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.079 secs] +[>>][56cd8c965773f959926792][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:57:26] +[<<][56cd8c965773f959926792][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.039 secs] +[<<][56cd8c9684dcf193937488][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.072 secs] +[>>][56cd8c9696edf925038008][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26] +[<<][56cd8c9696edf925038008][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.008 secs] +[<<][56cd8c96aa377119549425][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.064 secs] +[>>][56cd8c96ba15f923321451][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26] +[<<][56cd8c96ba15f923321451][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 10:57:26][16/Feb/24 10:57:26][took 0.008 secs] +[<<][56cd99c18c1f2449722768][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.078992 secs] +[>>][56cd99c19fa6a042389097][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:53:37] +[<<][56cd99c19fa6a042389097][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.006999 secs] +[<<][56cd99c1b5609794715415][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.079992 secs] +[>>][56cd99c1c9269158911263][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:53:37] +[<<][56cd99c1c9269158911263][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.037996 secs] +[<<][56cd99c1b7d18965335066][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.142986 secs] +[>>][56cd99c1daf8a245801261][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:53:37] +[<<][56cd99c1daf8a245801261][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:53:37][16/Feb/24 11:53:37][took 0.050994 secs] +[<<][56cd99c38ada2236970373][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.065994 secs] +[>>][56cd99c39b73c378382322][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:53:39] +[<<][56cd99c39b73c378382322][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.0069990000000001 secs] +[<<][56cd99c3a7a87918552860][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.09199 secs] +[>>][56cd99c3be5c5322391212][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:53:39] +[<<][56cd99c3be5c5322391212][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.019998 secs] +[<<][56cd99c3aa196895187703][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.137986 secs] +[>>][56cd99c3cc080896096038][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:53:39] +[<<][56cd99c3cc080896096038][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:53:39][16/Feb/24 11:53:39][took 0.009999 secs] +[<<][56cd99e1c7a31073619109][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:54:09][16/Feb/24 11:54:09][took 0.072993 secs] +[>>][56cd99e1d9b3a790881088][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:54:09] +[<<][56cd99e1d9b3a790881088][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 11:54:09][16/Feb/24 11:54:09][took 0.006999 secs] +[<<][56cd99e1ecbe2478722205][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:54:09][16/Feb/24 11:54:10][took 0.071993 secs] +[>>][56cd99e20a6c3946000757][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:54:10] +[<<][56cd99e20a6c3946000757][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 11:54:10][16/Feb/24 11:54:10][took 0.030997 secs] +[<<][56cd99e1eb85b178381303][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:54:09][16/Feb/24 11:54:10][took 0.140986 secs] +[>>][56cd99e21a4a4053049400][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:54:10] +[<<][56cd99e21a4a4053049400][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 11:54:10][16/Feb/24 11:54:10][took 0.049995 secs] +[<<][56cd99e3aa89d437796535][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.071993 secs] +[>>][56cd99e3bc5be259713190][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:54:11] +[<<][56cd99e3bc5be259713190][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.006999 secs] +[<<][56cd99e3c8139377074543][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.086991 secs] +[>>][56cd99e3dd8f0056380500][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:54:11] +[<<][56cd99e3dd8f0056380500][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.007999 secs] +[<<][56cd99e3c98a8145678490][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.111989 secs] +[>>][56cd99e3e55ed707042980][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:11] +[<<][56cd99e3e55ed707042980][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:11][16/Feb/24 11:54:11][took 0.055994 secs] +[<<][56cd99e426b0f780438133][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12][16/Feb/24 11:54:12][took 0.074993 secs] +[>>][56cd99e4393e8117695711][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12] +[<<][56cd99e4393e8117695711][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12][16/Feb/24 11:54:12][took 0.007999 secs] +[<<][56cd99e4491c9988932239][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12][16/Feb/24 11:54:12][took 0.071993 secs] +[>>][56cd99e45b2d2188937407][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12] +[<<][56cd99e45b2d2188937407][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:12][16/Feb/24 11:54:12][took 0.008999 secs] +[<<][56cd99e54d3cb554515936][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:13][16/Feb/24 11:54:13][took 0.077993 secs] +[>>][56cd99e56085b163126058][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:13] +[<<][56cd99e56085b163126058][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:13][16/Feb/24 11:54:13][took 0.078993 secs] +[<<][56cd99e8357c1607913680][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:16][16/Feb/24 11:54:16][took 0.080992 secs] +[>>][56cd99e849809563185440][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:16] +[<<][56cd99e849809563185440][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:16][16/Feb/24 11:54:16][took 0.050995 secs] +[<<][56cd99ecdf4ab902318500][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:54:20][16/Feb/24 11:54:20][took 0.063994 secs] +[>>][56cd99ecef28d217808353][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:54:20] +[<<][56cd99ecef28d217808353][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:54:20][16/Feb/24 11:54:20][took 0.005999 secs] +[<<][56cd99ed09aa7392735285][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:21][16/Feb/24 11:54:21][took 0.080992 secs] +[>>][56cd99ed1d707749771790][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:21] +[<<][56cd99ed1d707749771790][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:21][16/Feb/24 11:54:21][took 0.047995 secs] +[<<][56cd99ef4cfe3333537499][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:23][16/Feb/24 11:54:23][took 0.093991 secs] +[>>][56cd99ef646da053012630][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:23] + [16/Feb/24 11:54:23][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 11:54:23][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 11:54:23][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 11:54:23][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '} AND field_id = 1 AND field_value = "e") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = {tproject_id} AND field_id = 1 AND field_value = "e") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = {tproject_id} AND field_id = 1 AND field_value = "e") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '} AND field_id = 1 AND field_value = "e") ORDER BY login' at line 1 + [16/Feb/24 11:54:23][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1068 + [16/Feb/24 11:54:23][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd99ef646da053012630][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:54:23][16/Feb/24 11:54:24][took 0.59694 secs] +[<<][56cd99f00a91b394050718][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.072993 secs] +[>>][56cd99f01ca23451873841][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:24] +[<<][56cd99f01ca23451873841][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.075992 secs] +[<<][56cd99f052d3d656647985][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.084991 secs] +[>>][56cd99f06793c392252806][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:24] +[<<][56cd99f06793c392252806][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.037997 secs] +[<<][56cd99f096b11512039696][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.073993 secs] +[>>][56cd99f0a93ea647650863][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24] +[<<][56cd99f0a93ea647650863][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.007999 secs] +[<<][56cd99f0ba553648160927][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.072992 secs] +[>>][56cd99f0cc65b938890422][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24] +[<<][56cd99f0cc65b938890422][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:54:24][16/Feb/24 11:54:24][took 0.007999 secs] +[<<][56cd9a2999f03633424743][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:21][16/Feb/24 11:55:21][took 0.070993 secs] +[>>][56cd9a29abc24458064584][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:21] +[<<][56cd9a29abc24458064584][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:21][16/Feb/24 11:55:21][took 0.046995 secs] +[<<][56cd9a3072387819407972][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:28][16/Feb/24 11:55:28][took 0.080992 secs] +[>>][56cd9a30863cf817734105][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:28] +[<<][56cd9a30863cf817734105][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:28][16/Feb/24 11:55:28][took 0.076993 secs] +[<<][56cd9a30bd689085535905][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:28][16/Feb/24 11:55:28][took 0.087991 secs] +[>>][56cd9a30d3610292191266][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:28] +[<<][56cd9a30d3610292191266][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:28][16/Feb/24 11:55:28][took 0.046995 secs] +[<<][56cd9a311186b509252934][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29][16/Feb/24 11:55:29][took 0.071993 secs] +[>>][56cd9a31231a4772505683][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29] +[<<][56cd9a31231a4772505683][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29][16/Feb/24 11:55:29][took 0.007999 secs] +[<<][56cd9a3134add887932111][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29][16/Feb/24 11:55:29][took 0.083991 secs] +[>>][56cd9a31496dc484353429][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29] +[<<][56cd9a31496dc484353429][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:29][16/Feb/24 11:55:29][took 0.007999 secs] +[<<][56cd9a322f873112007742][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:30][16/Feb/24 11:55:30][took 0.072992 secs] +[>>][56cd9a3241d63593895052][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:30] +[<<][56cd9a3241d63593895052][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:30][16/Feb/24 11:55:30][took 0.072993 secs] +[<<][56cd9a38b101e693283594][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:36][16/Feb/24 11:55:36][took 0.069993 secs] +[>>][56cd9a38c256f506244893][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:36] +[<<][56cd9a38c256f506244893][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:36][16/Feb/24 11:55:36][took 0.048995 secs] +[<<][56cd9a3c29e9d931378100][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:55:40][16/Feb/24 11:55:40][took 0.063993 secs] +[>>][56cd9a3c3a066051470011][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:55:40] +[<<][56cd9a3c3a066051470011][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:55:40][16/Feb/24 11:55:40][took 0.005 secs] +[<<][56cd9a3c50ba5688437557][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:40][16/Feb/24 11:55:40][took 0.091991 secs] +[>>][56cd9a3c676e4332498651][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:40] +[<<][56cd9a3c676e4332498651][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:40][16/Feb/24 11:55:40][took 0.049995 secs] +[<<][56cd9a3e50ec5230603770][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:42][16/Feb/24 11:55:42][took 0.086991 secs] +[>>][56cd9a3e66294100097826][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:42] + [16/Feb/24 11:55:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 11:55:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 11:55:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 11:55:42][ERROR][4inpv8utgti1g3oaae5fpc8nl5][DATABASE] + ERROR ON exec_query() - database.class.php
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '} AND field_id = 1 AND field_value = "b") ORDER BY login' at line 1 - SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = {tproject_id} AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TL_users WHERE id = (SELECT assigned_user_id FROM TL_req_notify_assignments WHERE test_project_id = {tproject_id} AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1064] + errormsg:You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '} AND field_id = 1 AND field_value = "b") ORDER BY login' at line 1 + [16/Feb/24 11:55:42][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1068 + [16/Feb/24 11:55:42][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd9a3e66294100097826][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:55:42][16/Feb/24 11:55:43][took 0.583942 secs] +[<<][56cd9a3f08a3f615252897][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.075992 secs] +[>>][56cd9a3f1b6ff691770034][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:43] +[<<][56cd9a3f1b6ff691770034][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.082991 secs] +[<<][56cd9a3f54128858745641][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.09199 secs] +[>>][56cd9a3f6b04e674041389][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:43] +[<<][56cd9a3f6b04e674041389][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.052995 secs] +[<<][56cd9a3f9c54a484030401][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.077992 secs] +[>>][56cd9a3faf5f2633599087][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43] +[<<][56cd9a3faf5f2633599087][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.009999 secs] +[<<][56cd9a3fc5579352779655][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.070993 secs] +[>>][56cd9a3fd6eb2658014148][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43] +[<<][56cd9a3fd6eb2658014148][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:55:43][16/Feb/24 11:55:43][took 0.009999 secs] +[<<][56cd9acef0f72958747944][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:06][16/Feb/24 11:58:07][took 0.074992 secs] +[>>][56cd9acf0f9f2737224463][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:07] +[<<][56cd9acf0f9f2737224463][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:07][16/Feb/24 11:58:07][took 0.054995 secs] +[<<][56cd9ad251b43210685874][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:58:10][16/Feb/24 11:58:10][took 0.083992 secs] +[>>][56cd9ad26635b135547455][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:58:10] +[<<][56cd9ad26635b135547455][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 11:58:10][16/Feb/24 11:58:10][took 0.007999 secs] +[<<][56cd9ad2741fd331868983][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:10][16/Feb/24 11:58:10][took 0.072993 secs] +[>>][56cd9ad286306344401196][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:10] +[<<][56cd9ad286306344401196][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:10][16/Feb/24 11:58:10][took 0.050995 secs] +[<<][56cd9ad4aa837033184158][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:12][16/Feb/24 11:58:12][took 0.081991 secs] +[>>][56cd9ad4bec66275148152][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:12] + [16/Feb/24 11:58:12][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 11:58:12][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 11:58:12][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 11:58:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd9ad4bec66275148152][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 11:58:12][16/Feb/24 11:58:13][took 1.083892 secs] +[<<][56cd9ad5db4ff050046155][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:58:13][16/Feb/24 11:58:13][took 0.071992 secs] +[>>][56cd9ad5ed21f540220240][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:58:13] +[<<][56cd9ad5ed21f540220240][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 11:58:13][16/Feb/24 11:58:14][took 0.076993 secs] +[<<][56cd9ad62f6e1016231291][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.085991 secs] +[>>][56cd9ad644ab0993946143][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:58:14] +[<<][56cd9ad644ab0993946143][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.042996 secs] +[<<][56cd9ad674c25888059755][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.073992 secs] +[>>][56cd9ad687115788837818][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14] +[<<][56cd9ad687115788837818][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.007999 secs] +[<<][56cd9ad699606307728674][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.081992 secs] +[>>][56cd9ad6ada35980630119][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14] +[<<][56cd9ad6ada35980630119][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 11:58:14][16/Feb/24 11:58:14][took 0.009 secs] +[<<][56cd9c04b5ffd904078764][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:16][16/Feb/24 12:03:16][took 0.08 secs] +[>>][56cd9c04c987d560911595][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:16] +[<<][56cd9c04c987d560911595][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:16][16/Feb/24 12:03:16][took 0.053 secs] +[<<][56cd9c0a47675852837538][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:03:22][16/Feb/24 12:03:22][took 0.065 secs] +[>>][56cd9c0a5745d961834421][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:03:22] +[<<][56cd9c0a5745d961834421][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:03:22][16/Feb/24 12:03:22][took 0.006 secs] +[<<][56cd9c0a6a50d325307880][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:22][16/Feb/24 12:03:22][took 0.083 secs] +[>>][56cd9c0a7ed2d200860768][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:22] +[<<][56cd9c0a7ed2d200860768][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:22][16/Feb/24 12:03:22][took 0.052 secs] +[<<][56cd9c0d12ab5890556227][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:25][16/Feb/24 12:03:25][took 0.093 secs] +[>>][56cd9c0d299e5986230431][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:25] + [16/Feb/24 12:03:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 12:03:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 12:03:25][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 +[<<][56cd9c0d299e5986230431][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:03:25][16/Feb/24 12:03:25][took 0.051 secs] +[<<][56cd9c3219fe5546004224][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.069 secs] +[>>][56cd9c322b155622062170][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 12:04:02] +[<<][56cd9c322b155622062170][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.005 secs] +[<<][56cd9c323f58d774769429][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.09 secs] +[>>][56cd9c325551d224608264][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 12:04:02] +[<<][56cd9c325551d224608264][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.028 secs] +[<<][56cd9c3243bdd530737848][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.133 secs] +[>>][56cd9c326474d976921089][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 12:04:02] +[<<][56cd9c326474d976921089][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 12:04:02][16/Feb/24 12:04:02][took 0.044 secs] +[<<][56cd9c33e9835459096597][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 12:04:03][16/Feb/24 12:04:04][took 0.075 secs] +[>>][56cd9c3407ed5076472747][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 12:04:04] +[<<][56cd9c3407ed5076472747][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.007 secs] +[<<][56cd9c3417105120920103][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.081 secs] +[>>][56cd9c342b155132536230][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 12:04:04] +[<<][56cd9c342b155132536230][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.009 secs] +[<<][56cd9c3417105934715336][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.116 secs] +[>>][56cd9c3433a0d427255332][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:04] +[<<][56cd9c3433a0d427255332][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.048 secs] +[<<][56cd9c347aac5783533954][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.074 secs] +[>>][56cd9c348cfbd993371020][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04] +[<<][56cd9c348cfbd993371020][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.01 secs] +[<<][56cd9c349e8fd191735187][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.082 secs] +[>>][56cd9c34b311d573748344][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04] +[<<][56cd9c34b311d573748344][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:04][16/Feb/24 12:04:04][took 0.009 secs] +[<<][56cd9c35a7d6d930700433][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:05][16/Feb/24 12:04:05][took 0.076 secs] +[>>][56cd9c35ba64d882774566][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:05] +[<<][56cd9c35ba64d882774566][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:05][16/Feb/24 12:04:05][took 0.086 secs] +[<<][56cd9c3793165089854082][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:07][16/Feb/24 12:04:07][took 0.08 secs] +[>>][56cd9c37a6dcd775424055][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:07] +[<<][56cd9c37a6dcd775424055][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:07][16/Feb/24 12:04:07][took 0.05 secs] +[<<][56cd9c3b9066d880763999][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:04:11][16/Feb/24 12:04:11][took 0.068 secs] +[>>][56cd9c3ba17dd641319260][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:04:11] +[<<][56cd9c3ba17dd641319260][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 12:04:11][16/Feb/24 12:04:11][took 0.005 secs] +[<<][56cd9c3bb4c75715737089][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:11][16/Feb/24 12:04:11][took 0.076 secs] +[>>][56cd9c3bc793d420602304][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:11] +[<<][56cd9c3bc793d420602304][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:11][16/Feb/24 12:04:11][took 0.05 secs] +[<<][56cd9c42a65fd624538124][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:18][16/Feb/24 12:04:18][took 0.081 secs] +[>>][56cd9c42ba64d680520244][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:18] + [16/Feb/24 12:04:18][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 12:04:18][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 12:04:18][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/24 12:04:20][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.2' was saved +[<<][56cd9c42ba64d680520244][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 12:04:18][16/Feb/24 12:04:20][took 1.269 secs] +[<<][56cd9c440ffbd811612796][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.075 secs] +[>>][56cd9c442289d758484104][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:20] +[<<][56cd9c442289d758484104][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.083 secs] +[<<][56cd9c445baad189770376][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.083 secs] +[>>][56cd9c44706b5561763546][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:20] +[<<][56cd9c44706b5561763546][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.042 secs] +[<<][56cd9c449fc85550350558][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.075 secs] +[>>][56cd9c44b217d383237688][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20] +[<<][56cd9c44b217d383237688][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.01 secs] +[<<][56cd9c44c4675850873728][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.067 secs] +[>>][56cd9c44d5015035277023][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20] +[<<][56cd9c44d5015035277023][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.0079999999999999 secs] diff --git a/logsuserlog2.log b/logsuserlog2.log new file mode 100644 index 0000000000..fd9e84b06e --- /dev/null +++ b/logsuserlog2.log @@ -0,0 +1,587 @@ + [16/Feb/24 08:25:34][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Login for 'lejo' from '::1' succeeded +[<<][56cd68fe4a772102999367][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.016011 secs] +[<<][56cd68fe5dc41477486191][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.068048 secs] +[>>][56cd68fe6e9f9197649852][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:34] +[<<][56cd68fe6e9f9197649852][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.006005 secs] +[<<][56cd68fe80b3d094001006][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.080056 secs] +[>>][56cd68fe943f5761983045][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:34] +[<<][56cd68fe943f5761983045][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.044031 secs] +[<<][56cd68fe816f7592350174][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.160112 secs] +[>>][56cd68fea9039388552437][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:34] +[<<][56cd68fea9039388552437][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:25:34][16/Feb/24 08:25:34][took 0.034024 secs] +[<<][56cd69011a1da995550044][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.07105 secs] +[>>][56cd69012bb4c934933460][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:25:37] +[<<][56cd69012bb4c934933460][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.007005 secs] +[<<][56cd69013bd4a203882259][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.083058 secs] +[>>][56cd69015098e186745243][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:25:37] +[<<][56cd69015098e186745243][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.006004 secs] +[<<][56cd69013bd4a143281494][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.111078 secs] +[>>][56cd690157702056190586][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:25:37] + [16/Feb/24 08:25:37][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'hint_list_of_bugs' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:37][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'bugs_on_context' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:37][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'tester_works_with_settings' is not localized for locale 'de_DE' - using en_GB +[<<][56cd690157702056190586][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.060042 secs] +[<<][56cd69018d6e4578870274][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.067047 secs] +[>>][56cd69019dccb732663971][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37] +[<<][56cd69019dccb732663971][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.0080049999999999 secs] +[<<][56cd6901b213d246850456][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.068048 secs] +[>>][56cd6901c32de043752548][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37] +[<<][56cd6901c32de043752548][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:25:37][16/Feb/24 08:25:37][took 0.007005 secs] +[<<][56cd6903676a6817660661][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:39][16/Feb/24 08:25:39][took 0.079055 secs] +[>>][56cd69037af5e423933983][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:39] + [16/Feb/24 08:25:39][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'click_to_get_attachment' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:39][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'display_inline' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:39][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'display_ea_string' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 08:25:39][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'display_inline_string' is not localized for locale 'de_DE' - using en_GB +[<<][56cd69037af5e423933983][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:39][16/Feb/24 08:25:39][took 0.090063 secs] +[<<][56cd690a506cd556937926][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:46][16/Feb/24 08:25:46][took 0.083058 secs] +[>>][56cd690a64f28188187053][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:46] +[<<][56cd690a64f28188187053][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:25:46][16/Feb/24 08:25:46][took 0.087061 secs] +[<<][56cd691059063557993357][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:25:52][16/Feb/24 08:25:52][took 0.085059 secs] +[>>][56cd69106e08f961052340][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:25:52] + [16/Feb/24 08:25:52][L18N][4inpv8utgti1g3oaae5fpc8nl5][GUI] + string 'update_hint' is not localized for locale 'de_DE' - using en_GB +[<<][56cd69106e08f961052340][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:25:52][16/Feb/24 08:25:52][took 0.054038 secs] +[<<][56cd691a3f9d5875686159][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:26:02][16/Feb/24 08:26:02][took 0.07205 secs] +[>>][56cd691a51730758199418][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:26:02] +[<<][56cd691a51730758199418][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:26:02][16/Feb/24 08:26:02][took 0.004003 secs] +[<<][56cd691a64fe8674902959][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:02][16/Feb/24 08:26:02][took 0.076053 secs] +[>>][56cd691a77ce6938644924][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:02] +[<<][56cd691a77ce6938644924][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:02][16/Feb/24 08:26:02][took 0.052036 secs] +[<<][56cd6925b21f4115239802][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:13][16/Feb/24 08:26:13][took 0.084059 secs] +[>>][56cd6925c7220604593076][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:13] + [16/Feb/24 08:26:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 08:26:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 08:26:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 08:26:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1023 + [16/Feb/24 08:26:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1028 + [16/Feb/24 08:26:15][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd6925c7220604593076][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:26:13][16/Feb/24 08:26:15][took 1.322925 secs] +[<<][56cd69272b9a9675364405][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.072051 secs] +[>>][56cd69273d31c155743698][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:26:15] +[<<][56cd69273d31c155743698][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.077054 secs] +[<<][56cd692785c14668927684][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.084058 secs] +[>>][56cd69279a46e906908701][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:26:15] +[<<][56cd69279a46e906908701][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.034024 secs] +[<<][56cd6927dbff3880754386][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.077054 secs] +[>>][56cd6927ef0d9980356982][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:15] +[<<][56cd6927ef0d9980356982][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:15][16/Feb/24 08:26:15][took 0.007005 secs] +[<<][56cd69280b480952391000][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:16][16/Feb/24 08:26:16][took 0.075052 secs] +[>>][56cd69281e17e555889279][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:16] +[<<][56cd69281e17e555889279][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:26:16][16/Feb/24 08:26:16][took 0.007005 secs] +[<<][56cd6b4cabd95057349687][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:35:24][16/Feb/24 08:35:24][took 0.066006 secs] +[>>][56cd6b4cbbf6b852525139][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:35:24] +[<<][56cd6b4cbbf6b852525139][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:35:24][16/Feb/24 08:35:24][took 0.005001 secs] +[<<][56cd6b4cd2ea5007332561][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:35:24][16/Feb/24 08:35:24][took 0.076007 secs] +[>>][56cd6b4ce5b74493459706][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:35:24] +[<<][56cd6b4ce5b74493459706][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:35:24][16/Feb/24 08:35:24][took 0.023002 secs] +[<<][56cd6b4cd4de6000382143][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:35:24][16/Feb/24 08:35:25][took 0.131013 secs] +[>>][56cd6b4d00b6b566330562][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:35:25] +[<<][56cd6b4d00b6b566330562][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:35:25][16/Feb/24 08:35:25][took 0.037003 secs] +[<<][56cd6b4ec9ee1743696147][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:35:26][16/Feb/24 08:35:26][took 0.081008 secs] +[>>][56cd6b4eddf39605349170][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:35:26] +[<<][56cd6b4eddf39605349170][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:35:26][16/Feb/24 08:35:26][took 0.005001 secs] +[<<][56cd6b4eecd87665316949][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:35:26][16/Feb/24 08:35:27][took 0.080008 secs] +[>>][56cd6b4f0c7b7924823846][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:35:27] +[<<][56cd6b4f0c7b7924823846][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.007001 secs] +[<<][56cd6b4eecd87538127665][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:26][16/Feb/24 08:35:27][took 0.114012 secs] +[>>][56cd6b4f14c8b218685963][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:27] +[<<][56cd6b4f14c8b218685963][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.047005 secs] +[<<][56cd6b4f4c742347282042][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.077007 secs] +[>>][56cd6b4f5fbe2164084196][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27] +[<<][56cd6b4f5fbe2164084196][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.008 secs] +[<<][56cd6b4f70d59298603266][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.067006 secs] +[>>][56cd6b4f816ff667603184][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27] +[<<][56cd6b4f816ff667603184][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:27][16/Feb/24 08:35:27][took 0.006001 secs] +[<<][56cd6b508c348769048791][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:28][16/Feb/24 08:35:28][took 0.069007 secs] +[>>][56cd6b509d4bf409987728][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:28] +[<<][56cd6b509d4bf409987728][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:28][16/Feb/24 08:35:28][took 0.076007 secs] +[<<][56cd6b55031b4203754300][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:33][16/Feb/24 08:35:33][took 0.078007 secs] +[>>][56cd6b5516653133486394][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:33] +[<<][56cd6b5516653133486394][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:33][16/Feb/24 08:35:33][took 0.048005 secs] +[<<][56cd6b5d349f8527025880][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:35:41][16/Feb/24 08:35:41][took 0.067007 secs] +[>>][56cd6b5d45787866861316][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:35:41] +[<<][56cd6b5d45787866861316][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:35:41][16/Feb/24 08:35:41][took 0.004 secs] +[<<][56cd6b5d574b6015338931][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:41][16/Feb/24 08:35:41][took 0.071007 secs] +[>>][56cd6b5d68dfd046207313][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:41] +[<<][56cd6b5d68dfd046207313][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:41][16/Feb/24 08:35:41][took 0.053005 secs] +[<<][56cd6b61566a6534211903][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:45][16/Feb/24 08:35:45][took 0.074007 secs] +[>>][56cd6b6168f8d295723950][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:45] + [16/Feb/24 08:35:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 08:35:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 08:35:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 08:35:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1023 + [16/Feb/24 08:35:45][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1028 + [16/Feb/24 08:35:46][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd6b6168f8d295723950][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:35:45][16/Feb/24 08:35:46][took 1.224123 secs] +[<<][56cd6b62a83c3644129936][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:46][16/Feb/24 08:35:46][took 0.077008 secs] +[>>][56cd6b62bb863876296982][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:46] +[<<][56cd6b62bb863876296982][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:35:46][16/Feb/24 08:35:46][took 0.071007 secs] +[<<][56cd6b62f2379878515719][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:46][16/Feb/24 08:35:47][took 0.080008 secs] +[>>][56cd6b6311da9990435657][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:47] +[<<][56cd6b6311da9990435657][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:35:47][16/Feb/24 08:35:47][took 0.035003 secs] +[<<][56cd6b633ec7c656246539][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47][16/Feb/24 08:35:47][took 0.068007 secs] +[>>][56cd6b634fdf3392684851][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47] +[<<][56cd6b634fdf3392684851][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47][16/Feb/24 08:35:47][took 0.006 secs] +[<<][56cd6b6367114101002614][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47][16/Feb/24 08:35:47][took 0.066007 secs] +[>>][56cd6b63776d3530418112][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47] +[<<][56cd6b63776d3530418112][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:35:47][16/Feb/24 08:35:47][took 0.007001 secs] +[<<][56cd6bff9afa0545332890][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.068007 secs] +[>>][56cd6bffabd2f486115521][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:38:23] +[<<][56cd6bffabd2f486115521][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.0049999999999999 secs] +[<<][56cd6bffbfd87667918510][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.079008 secs] +[>>][56cd6bffd39f7199731822][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:38:23] +[<<][56cd6bffd39f7199731822][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.033004 secs] +[<<][56cd6bffbf99f921595240][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.157016 secs] +[>>][56cd6bffe62df897298254][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:38:23] +[<<][56cd6bffe62df897298254][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 08:38:23][16/Feb/24 08:38:23][took 0.037004 secs] +[<<][56cd6c0161a59282195597][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.069006 secs] +[>>][56cd6c0172bd0205429772][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:38:25] +[<<][56cd6c0172bd0205429772][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.005 secs] +[<<][56cd6c017db9c296784685][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.085009 secs] +[>>][56cd6c01927ad264129442][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:25] +[<<][56cd6c01927ad264129442][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.036003 secs] +[<<][56cd6c017fec5257856440][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.138014 secs] +[>>][56cd6c01a19e3841313602][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:38:25] +[<<][56cd6c01a19e3841313602][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.006 secs] +[<<][56cd6c01d88e1550790835][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.066007 secs] +[>>][56cd6c01e8ea0336460939][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:25] +[<<][56cd6c01e8ea0336460939][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:25][16/Feb/24 08:38:25][took 0.007001 secs] +[<<][56cd6c0209870162431286][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:26][16/Feb/24 08:38:26][took 0.070007 secs] +[>>][56cd6c021b1b8394149402][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:26] +[<<][56cd6c021b1b8394149402][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:26][16/Feb/24 08:38:26][took 0.007 secs] +[<<][56cd6c0524b40778228137][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:29][16/Feb/24 08:38:29][took 0.068006 secs] +[>>][56cd6c05358ce884972227][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:29] +[<<][56cd6c05358ce884972227][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:29][16/Feb/24 08:38:29][took 0.074008 secs] +[<<][56cd6c07aef30764990784][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:31][16/Feb/24 08:38:31][took 0.088009 secs] +[>>][56cd6c07c4ae1988772209][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:31] +[<<][56cd6c07c4ae1988772209][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:31][16/Feb/24 08:38:31][took 0.047005 secs] +[<<][56cd6c1097bab126211453][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:38:40][16/Feb/24 08:38:40][took 0.067006 secs] +[>>][56cd6c10a8939553503338][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:38:40] +[<<][56cd6c10a8939553503338][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 08:38:40][16/Feb/24 08:38:40][took 0.004001 secs] +[<<][56cd6c10b63ff261006270][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:40][16/Feb/24 08:38:40][took 0.075008 secs] +[>>][56cd6c10c8ce7919974042][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:40] +[<<][56cd6c10c8ce7919974042][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:40][16/Feb/24 08:38:40][took 0.048004 secs] +[<<][56cd6c13248e7587705173][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:43][16/Feb/24 08:38:43][took 0.080008 secs] +[>>][56cd6c1338940237834409][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:43] + [16/Feb/24 08:38:43][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 08:38:43][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 08:38:43][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 08:38:43][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1023 + [16/Feb/24 08:38:43][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1028 + [16/Feb/24 08:38:44][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd6c1338940237834409][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 08:38:43][16/Feb/24 08:38:44][took 1.249124 secs] +[<<][56cd6c147f2a8705090853][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:44][16/Feb/24 08:38:44][took 0.087009 secs] +[>>][56cd6c1494a71933751928][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:44] +[<<][56cd6c1494a71933751928][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 08:38:44][16/Feb/24 08:38:44][took 0.090009 secs] +[<<][56cd6c14d1f02542064231][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:44][16/Feb/24 08:38:44][took 0.076008 secs] +[>>][56cd6c14e4fba374886238][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:44] +[<<][56cd6c14e4fba374886238][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 08:38:44][16/Feb/24 08:38:44][took 0.039004 secs] +[<<][56cd6c151dc4d672696642][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45][16/Feb/24 08:38:45][took 0.065006 secs] +[>>][56cd6c152e20b172129537][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45] +[<<][56cd6c152e20b172129537][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45][16/Feb/24 08:38:45][took 0.007001 secs] +[<<][56cd6c1542a34635137380][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45][16/Feb/24 08:38:45][took 0.065006 secs] +[>>][56cd6c1552c0a634770217][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45] +[<<][56cd6c1552c0a634770217][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 08:38:45][16/Feb/24 08:38:45][took 0.006001 secs] +[<<][56cd71236f511992599649][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:19][16/Feb/24 09:00:19][took 0.260026 secs] +[>>][56cd7123af0b4508051174][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:19] +[<<][56cd7123af0b4508051174][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:19][16/Feb/24 09:00:19][took 0.191019 secs] +[<<][56cd712e77279355432099][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.072007 secs] +[>>][56cd712e88bc0847978812][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:00:30] +[<<][56cd712e88bc0847978812][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.006 secs] +[<<][56cd712e9241c482112034][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.076007 secs] +[>>][56cd712ea54d3405215430][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:30] + [16/Feb/24 09:00:30][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd712ea54d3405215430][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.062007 secs] +[<<][56cd712ebdf66693485847][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.069007 secs] +[>>][56cd712ecf4c5361349576][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:00:30] +[<<][56cd712ecf4c5361349576][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:00:30][16/Feb/24 09:00:30][took 0.115011 secs] +[<<][56cd712f49c3a649071093][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:00:31][16/Feb/24 09:00:31][took 0.073007 secs] +[>>][56cd712f5bd51995565048][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:00:31] +[<<][56cd712f5bd51995565048][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:00:31][16/Feb/24 09:00:31][took 0.088009 secs] +[<<][56cd712fc8f96529183334][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31][16/Feb/24 09:00:31][took 0.068007 secs] +[>>][56cd712fda10d904861729][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31] +[<<][56cd712fda10d904861729][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31][16/Feb/24 09:00:31][took 0.008001 secs] +[<<][56cd712fed1c5664680413][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:31][16/Feb/24 09:00:32][took 0.066006 secs] +[>>][56cd71300915b657732701][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:32] +[<<][56cd71300915b657732701][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:00:32][16/Feb/24 09:00:32][took 0.007001 secs] +[<<][56cd731643eac931524856][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.071 secs] +[>>][56cd731655404612387312][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:08:38] +[<<][56cd731655404612387312][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.008 secs] +[<<][56cd73166d2d4446468443][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.073 secs] +[>>][56cd73167effc782243555][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:08:38] +[<<][56cd73167effc782243555][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.037 secs] +[<<][56cd73166d2d4634943254][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.166 secs] +[>>][56cd731695f2c850520543][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:08:38] +[<<][56cd731695f2c850520543][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:08:38][16/Feb/24 09:08:38][took 0.078 secs] +[<<][56cd73185119c937042539][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.064 secs] +[>>][56cd731860b9c229479153][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:08:40] +[<<][56cd731860b9c229479153][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.01 secs] +[<<][56cd73186e274058032098][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.075 secs] +[>>][56cd731880b54525066084][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:08:40] +[<<][56cd731880b54525066084][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.036 secs] +[<<][56cd73187059c368115795][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.131 secs] +[>>][56cd73189093c029981879][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:08:40] +[<<][56cd73189093c029981879][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.012 secs] +[<<][56cd7318c5114348446986][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.069 secs] +[>>][56cd7318d6284186471072][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40] +[<<][56cd7318d6284186471072][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40][16/Feb/24 09:08:40][took 0.006 secs] +[<<][56cd7318f27a4039282191][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:40][16/Feb/24 09:08:41][took 0.061 secs] +[>>][56cd73190db7c724958776][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:41] +[<<][56cd73190db7c724958776][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:08:41][16/Feb/24 09:08:41][took 0.006 secs] +[<<][56cd731b079d4699014467][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:08:43][16/Feb/24 09:08:43][took 0.068 secs] +[>>][56cd731b1875c331446026][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:08:43] +[<<][56cd731b1875c331446026][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:08:43][16/Feb/24 09:08:43][took 0.021 secs] +[<<][56cd732c724dc460362988][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.072 secs] +[>>][56cd732c84204487288915][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:00] +[<<][56cd732c84204487288915][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.004 secs] +[<<][56cd732c9a194682821531][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.072 secs] +[>>][56cd732cabad4642450275][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:00] +[<<][56cd732cabad4642450275][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.025 secs] +[<<][56cd732c999c4345093624][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.129 secs] +[>>][56cd732cb91ac762987431][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:00] +[<<][56cd732cb91ac762987431][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:00][16/Feb/24 09:09:00][took 0.043 secs] +[<<][56cd732e3b5f4416893317][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.07 secs] +[>>][56cd732e4c764639011345][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:02] +[<<][56cd732e4c764639011345][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.004 secs] +[<<][56cd732e586cc559383481][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.075 secs] +[>>][56cd732e6afac907193725][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:02] +[<<][56cd732e6afac907193725][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.036 secs] +[<<][56cd732e5966c602405879][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.135 secs] +[>>][56cd732e7a9ac311025814][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:02] +[<<][56cd732e7a9ac311025814][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.007 secs] +[<<][56cd732ea786c604271297][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.064 secs] +[>>][56cd732eb7a3c245833689][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02] +[<<][56cd732eb7a3c245833689][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.007 secs] +[<<][56cd732ed1c34269488752][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.067 secs] +[>>][56cd732ee25d4100629783][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02] +[<<][56cd732ee25d4100629783][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:02][16/Feb/24 09:09:02][took 0.006 secs] +[<<][56cd733027d74762204319][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:04][16/Feb/24 09:09:04][took 0.073 secs] +[>>][56cd733039e84110961407][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:04] +[<<][56cd733039e84110961407][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:04][16/Feb/24 09:09:04][took 0.085 secs] +[<<][56cd7335ae5cc307958786][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:09][16/Feb/24 09:09:09][took 0.09 secs] +[>>][56cd7335c4944841568362][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:09] +[<<][56cd7335c4944841568362][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:09][16/Feb/24 09:09:09][took 0.051 secs] +[<<][56cd7338d472c774889898][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:12][16/Feb/24 09:09:12][took 0.067 secs] +[>>][56cd7338e50cc568876420][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:12] +[<<][56cd7338e50cc568876420][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:12][16/Feb/24 09:09:12][took 0.004 secs] +[<<][56cd73390088c274854229][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.08 secs] +[>>][56cd7339148dc545975899][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:13] + [16/Feb/24 09:09:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd7339148dc545975899][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.048 secs] +[<<][56cd7339275a4416989451][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.068 secs] +[>>][56cd73393832c169018078][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:13] +[<<][56cd73393832c169018078][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.073 secs] +[<<][56cd73396a00c237110218][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.071 secs] +[>>][56cd73397bd34268341821][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:13] +[<<][56cd73397bd34268341821][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.035 secs] +[<<][56cd7339a68cc558161117][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.07 secs] +[>>][56cd7339b7a3c545314020][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13] +[<<][56cd7339b7a3c545314020][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.006 secs] +[<<][56cd7339cb2bc659390841][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.069 secs] +[>>][56cd7339dc42c605593942][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13] +[<<][56cd7339dc42c605593942][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:13][16/Feb/24 09:09:13][took 0.006 secs] +[<<][56cd73420bc3c121850840][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:22][16/Feb/24 09:09:22][took 0.082 secs] +[>>][56cd73422045c590393610][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:22] +[<<][56cd73422045c590393610][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:22][16/Feb/24 09:09:22][took 0.053 secs] +[<<][56cd73484e2bc972084209][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:28][16/Feb/24 09:09:28][took 0.076 secs] +[>>][56cd734860b9c299619473][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:28] +[<<][56cd734860b9c299619473][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:09:28][16/Feb/24 09:09:28][took 0.004 secs] +[<<][56cd73486bb64672375257][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:28][16/Feb/24 09:09:28][took 0.076 secs] +[>>][56cd73487e82c300330428][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:28] +[<<][56cd73487e82c300330428][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:28][16/Feb/24 09:09:28][took 0.05 secs] +[<<][56cd734fb7654848818545][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:35][16/Feb/24 09:09:35][took 0.075 secs] +[>>][56cd734fc9b4c989753874][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:35] + [16/Feb/24 09:09:35][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 09:09:35][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:09:35][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 09:09:35][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1019 + [16/Feb/24 09:09:35][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1024 +[<<][56cd734fc9b4c989753874][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:09:35][16/Feb/24 09:09:35][took 0.047 secs] +[<<][56cd73648f5b4278449465][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.064 secs] +[>>][56cd73649f39c448890969][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:56] +[<<][56cd73649f39c448890969][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.004 secs] +[<<][56cd7364b0124532618642][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.076 secs] +[>>][56cd7364c2a04086206738][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:56] +[<<][56cd7364c2a04086206738][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.022 secs] +[<<][56cd7364b0cdc280899113][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.124 secs] +[>>][56cd7364cfcf4608383765][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:56] +[<<][56cd7364cfcf4608383765][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:09:56][16/Feb/24 09:09:56][took 0.033 secs] +[<<][56cd73660ac9c680485136][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.072 secs] +[>>][56cd73661cdac182674975][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:58] +[<<][56cd73661cdac182674975][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.005 secs] +[<<][56cd736628d14004662657][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.078 secs] +[>>][56cd73663c1ac188595362][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:58] +[<<][56cd73663c1ac188595362][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.007 secs] +[<<][56cd7366290fc075489548][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.108 secs] +[>>][56cd736643ac4057897784][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:58] +[<<][56cd736643ac4057897784][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.044 secs] +[<<][56cd736676f14691316398][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.066 secs] +[>>][56cd7366874cc427730983][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58] +[<<][56cd7366874cc427730983][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.007 secs] +[<<][56cd73669c0d4021481904][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.066 secs] +[>>][56cd7366aca74204649627][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58] +[<<][56cd7366aca74204649627][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:09:58][16/Feb/24 09:09:58][took 0.006 secs] +[<<][56cd7367ad244319053555][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:59][16/Feb/24 09:09:59][took 0.075 secs] +[>>][56cd7367bfb24109397343][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:59] +[<<][56cd7367bfb24109397343][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:09:59][16/Feb/24 09:09:59][took 0.08 secs] +[<<][56cd73681c1f4886311984][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:10:00][16/Feb/24 09:10:00][took 0.071 secs] +[>>][56cd73682db34488659345][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:10:00] +[<<][56cd73682db34488659345][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:10:00][16/Feb/24 09:10:00][took 0.017 secs] +[<<][56cd7369972b4208083453][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:01][16/Feb/24 09:10:01][took 0.078 secs] +[>>][56cd7369aab34025966119][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:01] +[<<][56cd7369aab34025966119][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:01][16/Feb/24 09:10:01][took 0.052 secs] +[<<][56cd7371655d4398400598][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:10:09][16/Feb/24 09:10:09][took 0.076 secs] +[>>][56cd737178684294386726][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:10:09] +[<<][56cd737178684294386726][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:10:09][16/Feb/24 09:10:09][took 0.004 secs] +[<<][56cd737189024402018646][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:09][16/Feb/24 09:10:09][took 0.082 secs] +[>>][56cd73719d45c781001697][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:09] +[<<][56cd73719d45c781001697][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:09][16/Feb/24 09:10:09][took 0.048 secs] +[<<][56cd737542b24267411585][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:13][16/Feb/24 09:10:13][took 0.074 secs] +[>>][56cd73755501c075604961][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:13] + [16/Feb/24 09:10:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 09:10:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:10:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 09:10:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1019 + [16/Feb/24 09:10:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1024 + [16/Feb/24 09:10:14][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd73755501c075604961][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:10:13][16/Feb/24 09:10:14][took 1.204 secs] +[<<][56cd73769110c846513735][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:10:14][16/Feb/24 09:10:14][took 0.071 secs] +[>>][56cd7376a2a4c646803460][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:10:14] +[<<][56cd7376a2a4c646803460][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:10:14][16/Feb/24 09:10:14][took 0.072 secs] +[<<][56cd7376d666c347993139][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:10:14][16/Feb/24 09:10:14][took 0.074 secs] +[>>][56cd7376e877c196166352][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:10:14] +[<<][56cd7376e877c196166352][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:10:14][16/Feb/24 09:10:14][took 0.035 secs] +[<<][56cd73771f8a4378535144][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15][16/Feb/24 09:10:15][took 0.068 secs] +[>>][56cd737730244438706698][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15] +[<<][56cd737730244438706698][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15][16/Feb/24 09:10:15][took 0.007 secs] +[<<][56cd73774aff4669430085][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15][16/Feb/24 09:10:15][took 0.063 secs] +[>>][56cd73775a9f4134824357][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15] +[<<][56cd73775a9f4134824357][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:10:15][16/Feb/24 09:10:15][took 0.006 secs] +[<<][56cd7c5425cb5910969469][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:48:04][16/Feb/24 09:48:04][took 0.083 secs] +[>>][56cd7c543a8bd400553241][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:48:04] +[<<][56cd7c543a8bd400553241][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:48:04][16/Feb/24 09:48:04][took 0.004 secs] +[<<][56cd7cad9b39d421029976][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.061 secs] +[>>][56cd7cadaa5cd868987819][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:49:33] +[<<][56cd7cadaa5cd868987819][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.005 secs] +[<<][56cd7cadbeded059853167][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.074 secs] +[>>][56cd7cadd0efd712660293][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:49:33] +[<<][56cd7cadd0efd712660293][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.033 secs] +[<<][56cd7cadbf1d5837070180][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.142 secs] +[>>][56cd7cade1c85395716426][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:49:33] +[<<][56cd7cade1c85395716426][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:49:33][16/Feb/24 09:49:33][took 0.039 secs] +[<<][56cd7cafa480d983191300][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.085 secs] +[>>][56cd7cafb97fd715899191][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:49:35] +[<<][56cd7cafb97fd715899191][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.006 secs] +[<<][56cd7cafc6ed5853388190][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.079 secs] +[>>][56cd7cafda755601295452][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:49:35] +[<<][56cd7cafda755601295452][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.006 secs] +[<<][56cd7cafc6705428331550][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.116 secs] +[>>][56cd7cafe300d467078864][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:49:35] +[<<][56cd7cafe300d467078864][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:49:35][16/Feb/24 09:49:35][took 0.043 secs] +[<<][56cd7cb024545800421994][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36][16/Feb/24 09:49:36][took 0.066 secs] +[>>][56cd7cb034afd574449818][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36] +[<<][56cd7cb034afd574449818][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36][16/Feb/24 09:49:36][took 0.006 secs] +[<<][56cd7cb048b4d564165312][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36][16/Feb/24 09:49:36][took 0.062 secs] +[>>][56cd7cb058165328942257][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36] +[<<][56cd7cb058165328942257][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:49:36][16/Feb/24 09:49:36][took 0.006 secs] +[<<][56cd7cb26ecad031640727][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:49:38][16/Feb/24 09:49:38][took 0.075 secs] +[>>][56cd7cb2811a5749267342][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:49:38] +[<<][56cd7cb2811a5749267342][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:49:38][16/Feb/24 09:49:38][took 0.083 secs] +[<<][56cd7cb2d8fe5783887443][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:49:38][16/Feb/24 09:49:38][took 0.065 secs] +[>>][56cd7cb2e8dcd568256751][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:49:38] +[<<][56cd7cb2e8dcd568256751][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:49:38][16/Feb/24 09:49:38][took 0.014 secs] +[<<][56cd7cb485025702414124][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:40][16/Feb/24 09:49:40][took 0.081 secs] +[>>][56cd7cb498c8d940781645][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:40] +[<<][56cd7cb498c8d940781645][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:40][16/Feb/24 09:49:40][took 0.047 secs] +[<<][56cd7cc78b99d349571457][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:49:59][16/Feb/24 09:49:59][took 0.062 secs] +[>>][56cd7cc79afb5887261434][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:49:59] +[<<][56cd7cc79afb5887261434][DEFAULT][/testlinkPrefixTest/login.php][16/Feb/24 09:49:59][16/Feb/24 09:49:59][took 0.004 secs] +[<<][56cd7cc7a9245957955624][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:59][16/Feb/24 09:49:59][took 0.085 secs] +[>>][56cd7cc7be235318037605][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:59] +[<<][56cd7cc7be235318037605][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:49:59][16/Feb/24 09:49:59][took 0.051 secs] +[<<][56cd7cce3cfcd695680171][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:50:06][16/Feb/24 09:50:06][took 0.081 secs] +[>>][56cd7cce51405068561970][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:50:06] + [16/Feb/24 09:50:06][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4090 + [16/Feb/24 09:50:06][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 09:50:06][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 4129 + [16/Feb/24 09:50:06][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/24 09:50:06][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 1020 + [16/Feb/24 09:50:07][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was saved +[<<][56cd7cce51405068561970][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:50:06][16/Feb/24 09:50:07][took 1.201 secs] +[<<][56cd7ccf8c16d192189471][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:50:07][16/Feb/24 09:50:07][took 0.074 secs] +[>>][56cd7ccf9e27d935988021][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:50:07] +[<<][56cd7ccf9e27d935988021][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:50:07][16/Feb/24 09:50:07][took 0.074 secs] +[<<][56cd7ccfdb30d881160096][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:50:07][16/Feb/24 09:50:07][took 0.078 secs] +[>>][56cd7ccfee7a5121793148][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:50:07] +[<<][56cd7ccfee7a5121793148][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:50:07][16/Feb/24 09:50:08][took 0.038 secs] +[<<][56cd7cd02a305996050761][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08][16/Feb/24 09:50:08][took 0.068 secs] +[>>][56cd7cd03b08d136178526][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08] +[<<][56cd7cd03b08d136178526][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08][16/Feb/24 09:50:08][took 0.006 secs] +[<<][56cd7cd04ecf5067809470][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08][16/Feb/24 09:50:08][took 0.064 secs] +[>>][56cd7cd05eec5913788577][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08] +[<<][56cd7cd05eec5913788577][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:50:08][16/Feb/24 09:50:08][took 0.006 secs] +[<<][56cd7d0fd0b15875419120][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:51:11][16/Feb/24 09:51:11][took 0.095 secs] +[>>][56cd7d0fe85fd372741929][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:51:11] +[<<][56cd7d0fe85fd372741929][DEFAULT][/testlinkPrefixTest/lib/ajax/getreqlog.php][16/Feb/24 09:51:11][16/Feb/24 09:51:11][took 0.015 secs] +[<<][56cd7d202398d225924683][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:51:28][16/Feb/24 09:51:28][took 0.083 secs] +[>>][56cd7d20381ad443711791][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:51:28] + [16/Feb/24 09:51:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 593 +[<<][56cd7d20381ad443711791][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:51:28][16/Feb/24 09:51:29][took 1.143 secs] +[<<][56cd7d21644b5330955979][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:51:29][16/Feb/24 09:51:29][took 0.071 secs] +[>>][56cd7d2175a0d228009313][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:51:29] +[<<][56cd7d2175a0d228009313][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:51:29][16/Feb/24 09:51:29][took 0.081 secs] +[<<][56cd7e4d32fa5336104623][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:56:29][16/Feb/24 09:56:29][took 0.096 secs] +[>>][56cd7e4d4ae75902815858][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:56:29] + [16/Feb/24 09:56:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 627 + [16/Feb/24 09:56:29][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 630 + [16/Feb/24 09:56:30][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: target - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 660 + [16/Feb/24 09:56:30][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Version 3 of Req 'DOCID:1.1' - anforderung 1 was deleted. +[<<][56cd7e4d4ae75902815858][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:56:29][16/Feb/24 09:56:30][took 1.148 secs] +[<<][56cd7e532aad5994439900][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:56:35][16/Feb/24 09:56:35][took 0.076 secs] +[>>][56cd7e533d79d704603556][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:56:35] +[<<][56cd7e533d79d704603556][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:56:35][16/Feb/24 09:56:35][took 0.077 secs] +[<<][56cd7e78a01bd834779914][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:57:12][16/Feb/24 09:57:12][took 0.077 secs] +[>>][56cd7e78b2e85485500568][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:57:12] + [16/Feb/24 09:57:12][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefixTest\lib\requirements\reqCommands.class.php - Line 349 + [16/Feb/24 09:57:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined variable: target - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\requirement_mgr.class.php - Line 660 + [16/Feb/24 09:57:13][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Requirement '1.1' was deleted +[<<][56cd7e78b2e85485500568][DEFAULT][/lib/requirements/reqEdit.php][16/Feb/24 09:57:12][16/Feb/24 09:57:13][took 1.081 secs] +[<<][56cd7e79e2455410730972][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:57:13][16/Feb/24 09:57:14][took 0.078 secs] +[>>][56cd7e7a012c5446489947][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:57:14] +[<<][56cd7e7a012c5446489947][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:57:14][16/Feb/24 09:57:14][took 0.038 secs] +[<<][56cd7e7a44115910903172][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14][16/Feb/24 09:57:14][took 0.069 secs] +[>>][56cd7e7a5566d746262796][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14] +[<<][56cd7e7a5566d746262796][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14][16/Feb/24 09:57:14][took 0.008 secs] +[<<][56cd7e7a68b05813586610][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14][16/Feb/24 09:57:14][took 0.066 secs] +[>>][56cd7e7a790bd321146359][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14] +[<<][56cd7e7a790bd321146359][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:57:14][16/Feb/24 09:57:14][took 0.007 secs] +[<<][56cd7e7bdab3d800963138][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:57:15][16/Feb/24 09:57:15][took 0.08 secs] +[>>][56cd7e7bee7a5296691645][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:57:15] +[<<][56cd7e7bee7a5296691645][DEFAULT][/lib/requirements/reqView.php][16/Feb/24 09:57:15][16/Feb/24 09:57:16][took 0.068 secs] +[<<][56cd7ec969ff9895162924][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.066013 secs] +[>>][56cd7ec97a5bf374898664][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:33] +[<<][56cd7ec97a5bf374898664][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.0050009999999999 secs] +[<<][56cd7ec98e61f774776124][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.087018 secs] +[>>][56cd7ec9a41d9069385563][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:33] +[<<][56cd7ec9a41d9069385563][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.026005 secs] +[<<][56cd7ec991cd2704046336][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.125025 secs] +[>>][56cd7ec9b091b792733092][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:33] +[<<][56cd7ec9b091b792733092][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:33][16/Feb/24 09:58:33][took 0.038008 secs] +[<<][56cd7ecb8283d289815369][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.068014 secs] +[>>][56cd7ecb935d3502611191][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:58:35] +[<<][56cd7ecb935d3502611191][DEFAULT][/lib/general/frmWorkArea.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.006001 secs] +[<<][56cd7ecb9f92d243863490][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.080016 secs] +[>>][56cd7ecbb398e108243099][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:58:35] +[<<][56cd7ecbb398e108243099][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.007001 secs] +[<<][56cd7ecb9f92d058787124][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.111023 secs] +[>>][56cd7ecbbb2ac254403619][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:58:35] +[<<][56cd7ecbbb2ac254403619][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 09:58:35][16/Feb/24 09:58:35][took 0.045009 secs] +[<<][56cd7ecc0ae93545276657][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36][16/Feb/24 09:58:36][took 0.069014 secs] +[>>][56cd7ecc1c3fa654735696][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36] +[<<][56cd7ecc1c3fa654735696][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36][16/Feb/24 09:58:36][took 0.007001 secs] +[<<][56cd7ecc2e901634417112][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36][16/Feb/24 09:58:36][took 0.065013 secs] +[>>][56cd7ecc3eec6408693676][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36] +[<<][56cd7ecc3eec6408693676][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 09:58:36][16/Feb/24 09:58:36][took 0.006001 secs] +[<<][56cd7ecd94ed4139713985][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.074015 secs] +[>>][56cd7ecda73db841068303][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:37] +[<<][56cd7ecda73db841068303][DEFAULT][/testlinkPrefixTest/index.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.0040009999999999 secs] +[<<][56cd7ecdb7d89363021131][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.077015 secs] +[>>][56cd7ecdcae49983296761][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:37] +[<<][56cd7ecdcae49983296761][DEFAULT][/testlinkPrefixTest/lib/general/navBar.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.023004 secs] +[<<][56cd7ecdb9ccb514214359][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.113022 secs] +[>>][56cd7ecdd5e1a899380791][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:37] +[<<][56cd7ecdd5e1a899380791][DEFAULT][/testlinkPrefixTest/lib/general/mainPage.php][16/Feb/24 09:58:37][16/Feb/24 09:58:37][took 0.033006 secs] +[<<][56cd7ed17560a719438616][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 09:58:41][16/Feb/24 09:58:41][took 0.066014 secs] +[>>][56cd7ed185bd0349046925][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 09:58:41] + [16/Feb/24 09:58:41][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] + Logout of 'lejo' diff --git a/testlinkEnhancements.git/HEAD b/testlinkEnhancements.git/HEAD deleted file mode 100644 index cb089cd89a..0000000000 --- a/testlinkEnhancements.git/HEAD +++ /dev/null @@ -1 +0,0 @@ -ref: refs/heads/master diff --git a/testlinkEnhancements.git/config b/testlinkEnhancements.git/config deleted file mode 100644 index 90e16477bd..0000000000 --- a/testlinkEnhancements.git/config +++ /dev/null @@ -1,7 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = false - bare = true - symlinks = false - ignorecase = true - hideDotFiles = dotGitOnly diff --git a/testlinkEnhancements.git/description b/testlinkEnhancements.git/description deleted file mode 100644 index 498b267a8c..0000000000 --- a/testlinkEnhancements.git/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/testlinkEnhancements.git/hooks/applypatch-msg.sample b/testlinkEnhancements.git/hooks/applypatch-msg.sample deleted file mode 100644 index a5d7b84a67..0000000000 --- a/testlinkEnhancements.git/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: diff --git a/testlinkEnhancements.git/hooks/commit-msg.sample b/testlinkEnhancements.git/hooks/commit-msg.sample deleted file mode 100644 index b58d1184a9..0000000000 --- a/testlinkEnhancements.git/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/testlinkEnhancements.git/hooks/post-update.sample b/testlinkEnhancements.git/hooks/post-update.sample deleted file mode 100644 index ec17ec1939..0000000000 --- a/testlinkEnhancements.git/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/testlinkEnhancements.git/hooks/pre-applypatch.sample b/testlinkEnhancements.git/hooks/pre-applypatch.sample deleted file mode 100644 index 4142082bcb..0000000000 --- a/testlinkEnhancements.git/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: diff --git a/testlinkEnhancements.git/hooks/pre-commit.sample b/testlinkEnhancements.git/hooks/pre-commit.sample deleted file mode 100644 index 68d62d5446..0000000000 --- a/testlinkEnhancements.git/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/testlinkEnhancements.git/hooks/pre-push.sample b/testlinkEnhancements.git/hooks/pre-push.sample deleted file mode 100644 index 6187dbf439..0000000000 --- a/testlinkEnhancements.git/hooks/pre-push.sample +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo >&2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/testlinkEnhancements.git/hooks/pre-rebase.sample b/testlinkEnhancements.git/hooks/pre-rebase.sample deleted file mode 100644 index 9773ed4cb2..0000000000 --- a/testlinkEnhancements.git/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/testlinkEnhancements.git/hooks/prepare-commit-msg.sample b/testlinkEnhancements.git/hooks/prepare-commit-msg.sample deleted file mode 100644 index f093a02ec4..0000000000 --- a/testlinkEnhancements.git/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/testlinkEnhancements.git/hooks/update.sample b/testlinkEnhancements.git/hooks/update.sample deleted file mode 100644 index d84758373d..0000000000 --- a/testlinkEnhancements.git/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/testlinkEnhancements.git/info/exclude b/testlinkEnhancements.git/info/exclude deleted file mode 100644 index a5196d1be8..0000000000 --- a/testlinkEnhancements.git/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ From 67b5bed78057b6eb30bc2a6259978a28b3f00472 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Wed, 24 Feb 2016 13:44:54 +0100 Subject: [PATCH 10/11] implementation of the subscibtion management view. --- lib/functions/requirement_mgr.class.php | 1 + lib/functions/requirements.inc.php | 27 ++++++++++++++++++++ lib/requirements/reqManageSubs.php | 10 +++++--- lib/requirements/reqView.php | 33 ++----------------------- 4 files changed, 36 insertions(+), 35 deletions(-) diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index 4cb8d892f4..e40faf400a 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -4198,6 +4198,7 @@ function getSubedUsers($tproject_id, $requirement_id) { ." AND req_subscription.fk_user_id = users.id" ." AND req_subscription.tproject_id = $tproject_id;"; $results = $this->db->get_recordset($sql); + mlog($sql); return $results; } diff --git a/lib/functions/requirements.inc.php b/lib/functions/requirements.inc.php index c95ff4418c..e89ca9e05c 100644 --- a/lib/functions/requirements.inc.php +++ b/lib/functions/requirements.inc.php @@ -32,6 +32,33 @@ function exportReqDataToXML($reqData) return exportDataToXML($reqData,$rootElem,$elemTpl,$info); } +function manageUserSubscribtion(&$db, &$args) { + $isSubed = 0; + mlog($args); + if($args->requirement_id>=0) { + $reqMgr = new requirement_mgr($db); + if(array_key_exists("subscribe",$_POST)) { + if(strcmp($_POST["subscribe"],lang_get("btn_subscribe")) === 0) { + $reqMgr->createSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $isSubed = 1; + } + elseif (strcmp($_POST["subscribe"],lang_get("btn_unsubscribe")) === 0) { + $reqMgr->removeSubscription($args->tproject_id, $args->requirement_id, $args->userID); + $isSubed = 0; + } + } + else { + $users = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); + foreach($users as $user) { + if($user["id"] === $args->userID) { + $isSubed = 1; + break; + } + } + } + } + return $isSubed; +} /** Process CVS file contents with requirements into TL * and creates an array with reports diff --git a/lib/requirements/reqManageSubs.php b/lib/requirements/reqManageSubs.php index e68b64c800..2b1e11b17f 100644 --- a/lib/requirements/reqManageSubs.php +++ b/lib/requirements/reqManageSubs.php @@ -16,6 +16,7 @@ require_once("../../config.inc.php"); require_once("common.php"); require_once('exttable.class.php'); +require_once('requirements.inc.php'); testlinkInitPage($db,false,false,"checkRights"); $templateCfg = templateConfiguration(); @@ -27,7 +28,7 @@ $gui = init_gui($args); $gui->reqIDs = $tproject_mgr->get_all_requirement_ids($args->tproject_id); - +manageUserSubscribtion($db,$args); $smarty = new TLSmarty(); if(count($gui->reqIDs) > 0) { @@ -118,10 +119,10 @@ } } if($isReqSubbed) { - $result[] = "".lang_get("req_already_subbed"); + $result[] = "
"; } else { - $result[] = "".lang_get("req_not_subbed_yet"); + $result[] = "
"; } $rows[] = $result; @@ -204,7 +205,8 @@ function init_args(&$tproject_mgr) $args->tproject_name = $tproject_info['name']; $args->tproject_description = $tproject_info['notes']; } - + $args->requirement_id = intval(isset($_POST['reqId']) ? $_POST['reqId'] : -1); + $args->userID = $_SESSION['currentUser']->dbID; return $args; } diff --git a/lib/requirements/reqView.php b/lib/requirements/reqView.php index 62b58c4342..8a38bd9bca 100644 --- a/lib/requirements/reqView.php +++ b/lib/requirements/reqView.php @@ -24,40 +24,11 @@ $args = init_args(); $gui = initialize_gui($db,$args,$tproject_mgr); -$reqMgr = new requirement_mgr($db); -if(array_key_exists("subscribe",$_POST)) { - if(strcmp($_POST["subscribe"],lang_get("btn_subscribe")) === 0) { - $reqMgr->createSubscription($args->tproject_id, $args->requirement_id, $args->userID); - $gui->isSubed = 1; - } - elseif (strcmp($_POST["subscribe"],lang_get("btn_unsubscribe")) === 0) { - $reqMgr->removeSubscription($args->tproject_id, $args->requirement_id, $args->userID); - $gui->isSubed = 0; - } -} -else { - $gui->isSubed = 0; - $users = $reqMgr->getSubedUsers($args->tproject_id,$args->requirement_id); - foreach($users as $user) { - if($user["id"] === $args->userID) { - $gui->isSubed = 1; - break; - } - } -} -$smarty = new TLSmarty(); +$smarty = new TLSmarty(); +$gui->isSubed = manageUserSubscribtion($db,$args); $smarty->assign('gui',$gui); $smarty->display($templateCfg->template_dir . 'reqViewVersions.tpl'); - - -function subscribeUser($user_id, $req_id) { - -} - -function unsubscribeUser() { - -} /** * */ From d7b18990b1e10543b6c23a4f8b71918deb3cd306 Mon Sep 17 00:00:00 2001 From: Leon Jordans Date: Thu, 25 Feb 2016 14:14:34 +0100 Subject: [PATCH 11/11] enable the assignment of multiple people to a process step --- .../notificationAssignmentConfig.tpl | 16 +- .../notificationAssignmentCreate.tpl | 16 +- lib/functions/requirement_mgr.class.php | 219 +- .../notificationAssignmentConfig.php | 29 +- .../notificationAssignmentCreate.php | 11 +- lib/requirements/reqCommands.class.php | 6 - logsaudits.log | 30 + logsuserlog0.log | 3828 ++++++++ logsuserlog1.log | 8623 +++++++++++++++++ logsuserlog2.log | 75 + 10 files changed, 12704 insertions(+), 149 deletions(-) diff --git a/gui/templates/notificationAssignmentConfig.tpl b/gui/templates/notificationAssignmentConfig.tpl index 04f03cc9f5..3d35585850 100644 --- a/gui/templates/notificationAssignmentConfig.tpl +++ b/gui/templates/notificationAssignmentConfig.tpl @@ -28,18 +28,22 @@ {if isset($gui->assignments)}
- {foreach key=fieldName item=fieldVal from=$gui->assignments} + {foreach key=fieldName item=fieldValues from=$gui->assignments}

{$fieldName}

- + - {for $i=0 to sizeof($fieldVal["field_value"])} + {foreach key=fieldVal item=assignedUsers from=$fieldValues} - - + + - {/for} + {/foreach}
{$labels.assign_table_header_fieldvals}{$labels.assign_table_header_users}
{$fieldVal["field_value"][$i]}{$fieldVal["user_name"][$i]}{$fieldVal} + {foreach item=user from=$assignedUsers} + {$user}
+ {/foreach} +
diff --git a/gui/templates/notificationAssignmentCreate.tpl b/gui/templates/notificationAssignmentCreate.tpl index 08d966b591..4c274edde4 100644 --- a/gui/templates/notificationAssignmentCreate.tpl +++ b/gui/templates/notificationAssignmentCreate.tpl @@ -2,6 +2,10 @@ s='assign_table_header_fieldvals,assign_table_header_users,btn_cancel,btn_ok'} +{$selectSize = 10} +{if count($gui->users) lt 10} +{$selectSize = count($gui->users)} +{/if} @@ -10,23 +14,21 @@
- + {foreach key=fieldValNr item=fieldVal from=$gui->fieldVals}
{$labels.assign_table_header_fieldvals}{$labels.assign_table_header_users}
{$fieldVal} - {$addSelectedUser = false} {foreach key=userIndex item=userName from=$gui->users} - {for $i=0 to sizeof($gui->fieldAssignments[$gui->fieldName]["field_value"])-1} - {if strcmp($fieldVal,$gui->fieldAssignments[$gui->fieldName]["field_value"][$i]) === 0 - and strcmp($userName,$gui->fieldAssignments[$gui->fieldName]["user_name"][$i]) === 0} + {foreach item=activeUser from=$gui->fieldAssignments[$gui->fieldName][$fieldVal]} + {if strcmp($activeUser,$userName) === 0} {$addSelectedUser = true} {break} {/if} - {/for} + {/foreach} {if $addSelectedUser} {$addSelectedUser = false} diff --git a/lib/functions/requirement_mgr.class.php b/lib/functions/requirement_mgr.class.php index c81fa920e5..e5b3144235 100644 --- a/lib/functions/requirement_mgr.class.php +++ b/lib/functions/requirement_mgr.class.php @@ -3984,61 +3984,56 @@ function: createNotificationFieldAssignment */ function createNotificationFieldAssignment($t_project_id, $field_name, &$assignment_set) { - $t_lang = isset($_SESSION['locale']) ? $_SESSION['locale'] : TL_DEFAULT_LOCALE; - //the status field always gets ID 0, because it is not a custom field. for custom fields, the id must be fetched first - $fieldId = 0; - if(strCmp($field_name,"Status") !== 0) { - $sql = "SELECT id FROM {$this->tables['custom_fields']} WHERE name=\"$field_name\""; - $results = $this->db->fetchRowsIntoMap($sql,"id"); - if(isset($results)) { - foreach($results as $val) { - $fieldId = $val["id"]; + $t_lang = isset($_SESSION['locale']) ? $_SESSION['locale'] : TL_DEFAULT_LOCALE; + //the status field always gets ID 0, because it is not a custom field. for custom fields, the id must be fetched first + $fieldId = 0; + if(strCmp($field_name,"Status") !== 0) { + $sql = "SELECT id FROM {$this->tables['custom_fields']} WHERE name=\"$field_name\""; + $results = $this->db->fetchRowsIntoMap($sql,"id"); + if(isset($results)) { + foreach($results as $val) { + $fieldId = $val["id"]; + } + } else { + $fieldId = -1; } - } else { - $fieldId = -1; } - } - else { - //for reasons of localization the field values of the status field will always be written to the database in english language. - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $assignment_set_new = array(); - foreach($assignment_set as $fieldVal => $userName) { - foreach($statusFieldValsLocalized as $index => $fieldValLocalized) { - if(strcmp($fieldVal,$fieldValLocalized) == 0) { - $assignment_set_new[$statusFieldValsEN[$index]] = $userName; + else { + //for reasons of localization the field values of the status field will always be written to the database in english language. + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $assignment_set_new = array(); + foreach($assignment_set as $fieldName => $userNames) { + foreach($statusFieldValsLocalized as $index => $fieldValLocalized) { + if(strcmp($fieldName,$fieldValLocalized) == 0) { + $assignment_set_new[$statusFieldValsEN[$index]] = $userNames; + } } } + $assignment_set = $assignment_set_new; } - $assignment_set = $assignment_set_new; - } - - //insert the data if the field name is valid - if(fieldId >= 0) { - $sql = "SELECT field_id" - . " FROM {$this->tables['req_notify_assignments']}" - . " WHERE test_project_id=$t_project_id" - . " AND field_id=$fieldId"; - - $retValSet = $this->db->fetchRowsIntoMap($sql,"field_id"); - if(isset($retValSet)) { - $sql = "DELETE FROM req_notify_assignments" + //insert the data if the field name is valid + if(fieldId >= 0) { + $sql = "DELETE FROM {$this->tables['req_notify_assignments']}" . " WHERE test_project_id=$t_project_id AND field_id=$fieldId"; $this->db->exec_query($sql); - } - $insertInto = "INSERT INTO {$this->tables['req_notify_assignments']} (test_project_id,field_id,field_value,assigned_user_id) VALUES"; - $sql=$insertInto; - foreach($assignment_set as $key => $val) { - if(strlen($val)>0) { - $sql .= " ($t_project_id,$fieldId,\"$key\",(SELECT id FROM {$this->tables['users']} WHERE login=\"$val\")),"; + + $insertInto = "INSERT INTO {$this->tables['req_notify_assignments']} (test_project_id,field_id,field_value,assigned_user_id) VALUES"; + $sql=$insertInto; + foreach($assignment_set as $fieldName => $userNames) { + foreach($userNames as $userName) { + if(strlen($userName)>0) { + $sql .= " ($t_project_id,$fieldId,\"$fieldName\",(SELECT id FROM {$this->tables['users']} WHERE login=\"$userName\")),"; + } + } + } + + if(strlen($sql)>strlen($insertInto)) { + $sql=rtrim($sql, ","); + $sql.=";"; + $this->db->exec_query($sql); } - } - if(strlen($sql)>strlen($insertInto)) { - $sql=rtrim($sql, ","); - $sql.=";"; - $this->db->exec_query($sql); } - } } /* @@ -4075,58 +4070,46 @@ function: getAllNotificationFieldAssignments */ function getAllNotificationFieldAssignments($t_project_id) { - $sql="SELECT {$this->tables['custom_fields']}.name,field_value,login" - ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']},{$this->tables['custom_fields']}" - ." WHERE test_project_id=$t_project_id" - ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" - ." AND {$this->tables['custom_fields']}.id={$this->tables['req_notify_assignments']}.field_id" - ." ORDER BY test_project_id, {$this->tables['custom_fields']}.name;"; - - $results = $this->db->get_recordset($sql); - - $currentFieldName = ""; - - //tansform the results into a datastructure which is better usable - foreach($results as $key => $val) { - if(strcmp($currentFieldName,$results[$key]["name"])!==0) { - $currentFieldName = $results[$key]["name"]; - $transformedResults[$currentFieldName]["field_value"] = array(); - $transformedResults[$currentFieldName]["user_name"] = array(); - } - array_push($transformedResults[$currentFieldName]["field_value"],$val["field_value"]); - array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); - } - - //fetch Assignements for "Status"-field seperately, because it is not a custom field - $sql="SELECT field_value,login" - ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']}" - ." WHERE test_project_id=$t_project_id" - ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" - ." AND {$this->tables['req_notify_assignments']}.field_id = 0" - ." ORDER BY test_project_id;"; - - $results = $this->db->get_recordset($sql); - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $localizedFieldVal = ""; - foreach($results as $key => $val) { - $localizedFieldVal = $val["field_value"]; - if(strcmp($currentFieldName,"Status")!==0) { - $currentFieldName = "Status"; - $transformedResults[$currentFieldName]["field_value"] = array(); - $transformedResults[$currentFieldName]["user_name"] = array(); + $sql="SELECT {$this->tables['custom_fields']}.name,field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']},{$this->tables['custom_fields']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['custom_fields']}.id={$this->tables['req_notify_assignments']}.field_id" + ." ORDER BY test_project_id, {$this->tables['custom_fields']}.name;"; + + $results = $this->db->get_recordset($sql); + $currentFieldName = ""; + //tansform the results into a datastructure which is better usable + foreach($results as $dataset) { + if(strcmp($currentFieldName,$dataset["name"])!==0) { + $currentFieldName = $dataset["name"]; + } + $transformedResults[$currentFieldName][$dataset["field_value"]][] = $dataset["login"]; } - foreach($statusFieldValsEN as $index => $fieldValEN) { - if(strcmp($fieldValEN,$localizedFieldVal)==0){ - $localizedFieldVal = $statusFieldValsLocalized[$index]; - break; + + //fetch Assignements for "Status"-field seperately, because it is not a custom field + $sql="SELECT field_value,login" + ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']}" + ." WHERE test_project_id=$t_project_id" + ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" + ." AND {$this->tables['req_notify_assignments']}.field_id = 0" + ." ORDER BY test_project_id;"; + + $results = $this->db->get_recordset($sql); + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + foreach($results as $dataset) { + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$dataset["field_value"])==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } } + $transformedResults["Status"][$localizedFieldVal][] = $dataset["login"]; } - array_push($transformedResults[$currentFieldName]["field_value"],$localizedFieldVal); - array_push($transformedResults[$currentFieldName]["user_name"],$val["login"]); - } - - return $transformedResults; + + return $transformedResults; } @@ -4149,12 +4132,28 @@ function: getNotificationFieldAssignmentByFieldName field_name: the name of the field of which the values should be fetched */ function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { + $transformedResults = array(); if(strCmp($field_name,"Status") === 0) { $sql="SELECT field_value,login" ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']}" ." WHERE test_project_id=$t_project_id" ." AND {$this->tables['users']}.id = {$this->tables['req_notify_assignments']}.assigned_user_id" ." AND {$this->tables['req_notify_assignments']}.field_id = 0"; + + $results = $this->db->get_recordset($sql); + $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); + $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); + $localizedFieldVal = ""; + + foreach($results as $dataset) { + foreach($statusFieldValsEN as $index => $fieldValEN) { + if(strcmp($fieldValEN,$dataset["field_value"])==0){ + $localizedFieldVal = $statusFieldValsLocalized[$index]; + break; + } + } + $transformedResults["Status"][$localizedFieldVal][] = $dataset["login"]; + } } else { $sql="SELECT field_value,login" ." FROM {$this->tables['req_notify_assignments']},{$this->tables['users']},{$this->tables['custom_fields']}" @@ -4163,29 +4162,12 @@ function getNotificationFieldAssignmentByFieldName($t_project_id,$field_name) { ." AND {$this->tables['custom_fields']}.name = \"$field_name\"" ." AND {$this->tables['custom_fields']}.id={$this->tables['req_notify_assignments']}.field_id" ." ORDER BY test_project_id, {$this->tables['custom_fields']}.name;"; - } - - //tansform the results into a datastructure which is better usable - $transformedResults = array(); - $results = $this->db->get_recordset($sql); - - $statusFieldValsLocalized = $this->getStatusFieldValsLocaledForAssignment(); - $statusFieldValsEN = $this->getStatusFieldValsLocaledForAssignment("en_GB"); - $localizedFieldVal = ""; - - $transformedResults[$field_name]["field_value"] = array(); - $transformedResults[$field_name]["user_name"] = array(); - foreach($results as $key => $val) { - $localizedFieldVal = $val["field_value"]; - foreach($statusFieldValsEN as $index => $fieldValEN) { - if(strcmp($fieldValEN,$localizedFieldVal)==0){ - $localizedFieldVal = $statusFieldValsLocalized[$index]; - break; - } + $results = $this->db->get_recordset($sql); + //tansform the results into a datastructure which is better usable + foreach($results as $dataset) { + $transformedResults[$field_name][$dataset["field_value"]][] = $dataset["login"]; } - array_push($transformedResults[$field_name]["field_value"],$localizedFieldVal); - array_push($transformedResults[$field_name]["user_name"],$val["login"]); } return $transformedResults; @@ -4197,7 +4179,6 @@ function getSubscribedUsers($tproject_id, $requirement_id) { ." WHERE {$this->tables['req_subscription']}.req_id = $requirement_id" ." AND {$this->tables['req_subscription']}.user_id = {$this->tables['users']}.id" ." AND {$this->tables['req_subscription']}.tproject_id = $tproject_id;"; - mlog($sql); $results = $this->db->get_recordset($sql); return $results; } @@ -4253,13 +4234,15 @@ function getAllReqSubscribed($tproject_id, $userId) { } function getAssignedUsers($tproject_id, $field_id, $reqState) { - $sqlWhere = "WHERE id = (SELECT assigned_user_id" + $sqlWhere = "WHERE id IN (SELECT assigned_user_id" ." FROM {$this->tables['req_notify_assignments']}" ." WHERE test_project_id = $tproject_id" ." AND field_id = $field_id" ." AND field_value = \"$reqState\")"; $assignedUsers = tlUser::getAll($this->db, $sqlWhere,null,null,tlDBObject::TLOBJ_O_GET_DETAIL_MINIMUM); + mlog($assignedUsers); + mlog($sqlWhere); return $assignedUsers; } } // class end \ No newline at end of file diff --git a/lib/notificationassignments/notificationAssignmentConfig.php b/lib/notificationassignments/notificationAssignmentConfig.php index 08615c6808..a7cb20b265 100644 --- a/lib/notificationassignments/notificationAssignmentConfig.php +++ b/lib/notificationassignments/notificationAssignmentConfig.php @@ -13,14 +13,24 @@ //if a new assignment was made or an assignment was deleted, the database will be updated $reqMgr = new requirement_mgr($db); $_realPOST = getRealInput('POST'); +$startIndex = 7; #strlen("select_") if(array_key_exists("submit",$_realPOST)) { $selectFieldValues = array(); - foreach($_realPOST as $key => $val) { + foreach($_realPOST as $key => $fieldVals) { $selectPos = strpos($key,"select_"); if($selectPos !== false) { - $selectFieldValues[str_replace("_"," ",substr($key,$selectPos+7))] = $val; + $realFieldName = substr($key,$startIndex,strlen($key)-2-$startIndex); + //is array? + if(is_array($fieldVals)) { + foreach($fieldVals as $val) { + $selectFieldValues[$realFieldName][] = $val; + } + } else { + $selectFieldValues[$realFieldName][] = $val; + } } } + $reqMgr->createNotificationFieldAssignment($args->tproject_id, $_realPOST["fieldName"], $selectFieldValues); }elseif(array_key_exists("delete",$_realPOST)) { $reqMgr->deleteNotificationFieldAssignmentsByFieldName($args->tproject_id,$_realPOST["fieldName"]); @@ -59,9 +69,9 @@ function init_gui(&$db, &$args, &$reqMgr) $ArrFieldNamesForGUI[0] = ""; $ArrFieldNamesForGUI["Status"] = "Status"; foreach($linkedCustomfields as $customField) { - if($customField["type"] == 6) { - $ArrFieldNamesForGUI[$customField["name"]] = $customField["name"]; - } + if($customField["type"] == 6) { + $ArrFieldNamesForGUI[$customField["name"]] = $customField["name"]; + } } $gui->fieldNames = $ArrFieldNamesForGUI; @@ -76,12 +86,19 @@ function init_args(&$db) { function getRealInput($source) { $pairs = explode("&", $source == 'POST' ? file_get_contents("php://input") : $_SERVER['QUERY_STRING']); + $vars = array(); foreach ($pairs as $pair) { $nv = explode("=", $pair); $name = urldecode($nv[0]); $value = urldecode($nv[1]); - $vars[$name] = $value; + $vars[$name][] = $value; + } + foreach($vars as $key => $val) { + if(sizeof($val) == 1) { + unset($vars[$key]); + $vars[$key] = array_pop($val); + } } return $vars; } diff --git a/lib/notificationassignments/notificationAssignmentCreate.php b/lib/notificationassignments/notificationAssignmentCreate.php index 79eca49958..ff1abec75f 100644 --- a/lib/notificationassignments/notificationAssignmentCreate.php +++ b/lib/notificationassignments/notificationAssignmentCreate.php @@ -35,16 +35,15 @@ function init_gui(&$db) $gui = $commandMgr->initGuiBean(); //fetch the possible values of the given field if(strcmp($fieldName,"Status") === 0) { - $gui->fieldVals = $reqMgr->getStatusFieldValsLocaledForAssignment(); } else { - $cfield_mgr = new cfield_mgr($db); - $selctedCField = $cfield_mgr->get_by_name($fieldName); - foreach($selctedCField as $val) { - $gui->fieldVals = explode("|",$val["possible_values"]); - } + $cfield_mgr = new cfield_mgr($db); + $selctedCField = $cfield_mgr->get_by_name($fieldName); + foreach($selctedCField as $val) { + $gui->fieldVals = explode("|",$val["possible_values"]); + } } $args = init_args($db); diff --git a/lib/requirements/reqCommands.class.php b/lib/requirements/reqCommands.class.php index 49de6ffeca..1926dac3cb 100644 --- a/lib/requirements/reqCommands.class.php +++ b/lib/requirements/reqCommands.class.php @@ -1043,17 +1043,11 @@ private function sendMailOnStatusChange(&$db,&$args) } if(strcmp($oldFieldVal,$reqState) !== 0 && strlen($reqState)!==0) { - $fieldAssignment = $reqMgr->getNotificationFieldAssignmentByFieldName($args->tproject_id, $fieldMetadata["name"]); if(strcmp($fieldName,"Status") === 0) { $reqState = $this->getStatusIdentifier($args->reqStatus, "en_GB"); } - - if(strcmp($fieldName,"Status") === 0) { - $reqState = $this->getStatusIdentifier($args->reqStatus); - } $assignedUsers = $reqMgr->getAssignedUsers($args->tproject_id,$fieldMetadata["id"],$reqState); - foreach($assignedUsers as $assignedUser) { $subject = lang_get('req_change_notification_subject',$assignedUser->locale); $subject = str_replace("%reqState", $reqState, $subject); diff --git a/logsaudits.log b/logsaudits.log index 25a3e97db6..4348ff3262 100644 --- a/logsaudits.log +++ b/logsaudits.log @@ -94,3 +94,33 @@ Requirement '1.2' was saved [16/Feb/24 12:04:20][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] Requirement '1.2' was saved + [16/Feb/24 16:07:04][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/25 08:15:42][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/25 09:27:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Test Project 'testlink' - Test Plan 'asd' was created + [16/Feb/25 09:27:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was assigned the role 'admin' to the Test Plan 'asd' + [16/Feb/25 12:23:50][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Logout of 'admin' + [16/Feb/25 12:23:56][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'lejo' from '::1' succeeded + [16/Feb/25 12:24:12][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Logout of 'lejo' + [16/Feb/25 12:24:15][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded + [16/Feb/25 12:24:29][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was saved + [16/Feb/25 12:25:05][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was saved + [16/Feb/25 12:49:34][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved + [16/Feb/25 12:50:42][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved + [16/Feb/25 12:55:03][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved + [16/Feb/25 13:09:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved + [16/Feb/25 13:12:07][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.2' was saved diff --git a/logsuserlog0.log b/logsuserlog0.log index dd156c5eb6..63ce40b211 100644 --- a/logsuserlog0.log +++ b/logsuserlog0.log @@ -2757,3 +2757,3831 @@ Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs [16/Feb/24 12:04:20][WARNING][][GUI] E_NOTICE Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions\common.php - Line 51 +[>>][56cdcb59e6223963143247][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:25:13] + [16/Feb/24 15:25:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb5a165eb448454467][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:25:14] +[>>][56cdcb5a18cfb303712285][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:25:14] + [16/Feb/24 15:25:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:25:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb5a8b11b810586125][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14] + [16/Feb/24 15:25:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb5aafef3266519749][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14] + [16/Feb/24 15:25:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb5c90edb625745085][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:25:16] + [16/Feb/24 15:25:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb5fc52cb417696675][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 15:25:19] + [16/Feb/24 15:25:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9b5b763444029767][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:19] + [16/Feb/24 15:26:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9b8341b410600388][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:19] +[>>][56cdcb9b8a17b032738117][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:19] + [16/Feb/24 15:26:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:26:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9e3afdb120855371][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:26:22] + [16/Feb/24 15:26:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9e5abab509583386][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:26:22] +[>>][56cdcb9e5da8b123956266][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:26:22] + [16/Feb/24 15:26:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:26:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9ec75f3730091962][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22] + [16/Feb/24 15:26:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcb9eedf23588461092][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22] + [16/Feb/24 15:26:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcba0e46cb528557980][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:26:24] + [16/Feb/24 15:26:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcba2142c3548705936][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:26] + [16/Feb/24 15:26:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcba23afdb046411386][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:26] +[>>][56cdcba23b3c3672384406][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:26] + [16/Feb/24 15:26:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcba48a94b496391114][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:26:28] + [16/Feb/24 15:26:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdcba6b8b93733960465][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:26:30] + [16/Feb/24 15:26:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce21c56b3844858558][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:05] + [16/Feb/24 15:37:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce21ee6f3268062916][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:05] +[>>][56cdce220065b584610941][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:06] + [16/Feb/24 15:37:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:37:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce239f93b145821328][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 15:37:07] + [16/Feb/24 15:37:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce2595cfb751104395][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:09] + [16/Feb/24 15:37:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce25bfcdb935784866][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:09] +[>>][56cdce25c1833460181388][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:09] + [16/Feb/24 15:37:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:37:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce26e3b13210311121][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:10] + [16/Feb/24 15:37:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce2912383609948895][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:13] + [16/Feb/24 15:37:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce5285f13640205255][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:54] + [16/Feb/24 15:37:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce52ae39b600877444][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:54] +[>>][56cdce52b221b089143343][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:54] + [16/Feb/24 15:37:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 15:37:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce5554233500897072][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:57] + [16/Feb/24 15:37:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdce57457d3160289122][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:59] + [16/Feb/24 15:37:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd5241bb83158073511][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:00] + [16/Feb/24 16:07:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cdd5241bb83158073511][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:00][16/Feb/24 16:07:00][took 0.065006 secs] +[>>][56cdd524428ab570858933][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:00] + [16/Feb/24 16:07:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cdd524428ab570858933][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:00][16/Feb/24 16:07:00][took 0.087008 secs] +[>>][56cdd52458073464896411][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:00] + [16/Feb/24 16:07:00][L18N][][GUI] + string 'login' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 16:07:00][L18N][][GUI] + string 'demo_usage' is not localized for locale 'de_DE' - using en_GB + [16/Feb/24 16:07:00][L18N][][GUI] + string 'new_style_login' is not localized for locale 'de_DE' - using en_GB +[<<][56cdd52458073464896411][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:00][16/Feb/24 16:07:00][took 0.036004 secs] +[>>][56cdd52813c27710744458][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04] + [16/Feb/24 16:07:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cdd52813c27710744458][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.09601 secs] +[>>][56cdd5282b719953512033][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04] +[<<][56cdd5282b719953512033][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.010001 secs] +[>>][56cdd5282de2a193539878][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04] +[>>][56cdd5284979d374909294][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:04] + [16/Feb/24 16:07:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd5287378f691386389][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:07:04] +[>>][56cdd52877de0177000294][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:07:04] + [16/Feb/24 16:07:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:07:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd52a918db605607758][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:07:06] + [16/Feb/24 16:07:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd52ceb360878203251][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:07:08] + [16/Feb/24 16:07:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a2ec0a4113632160][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:22] + [16/Feb/24 16:13:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a3202fd626294863][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:23] +[>>][56cdd6a3287d0382049448][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:23] + [16/Feb/24 16:13:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:13:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a493368678443964][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:13:24] + [16/Feb/24 16:13:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a60bfe8578110632][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:26] + [16/Feb/24 16:13:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a635039017353503][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:26] +[>>][56cdd6a635039504988864][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:26] + [16/Feb/24 16:13:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:13:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a7446bb174627958][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:13:27] + [16/Feb/24 16:13:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6a957453963258342][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:13:29] + [16/Feb/24 16:13:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6ca0359c668963015][DEFAULT][/new_pull/index.php][16/Feb/24 16:14:02] + [16/Feb/24 16:14:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6ca2a2c4221581490][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:14:02] +[>>][56cdd6ca2a6ac526988770][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:14:02] + [16/Feb/24 16:14:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:14:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6ccb65f6792670069][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:14:04] + [16/Feb/24 16:14:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd6ce0a0a7507447847][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:14:06] + [16/Feb/24 16:14:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd732265d2719858209][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:46] + [16/Feb/24 16:15:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7324ee52292256724][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:46] +[>>][56cdd73253c74640486334][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:46] + [16/Feb/24 16:15:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:15:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd73454124798953872][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:15:48] + [16/Feb/24 16:15:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7363aba2542243802][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:50] + [16/Feb/24 16:15:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd73663bf3710471740][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:50] +[>>][56cdd73664b93915915137][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:50] + [16/Feb/24 16:15:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:15:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7380935e314281420][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:15:52] + [16/Feb/24 16:15:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd73989aa6383985996][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:15:53] + [16/Feb/24 16:15:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd74be8d75867288894][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:11] + [16/Feb/24 16:16:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd74c1d3b6539641425][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:12] +[>>][56cdd74c1db86482340380][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:12] + [16/Feb/24 16:16:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:16:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd74e38239294516866][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:16:14] + [16/Feb/24 16:16:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd74fa4159465503722][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:15] + [16/Feb/24 16:16:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd74fcc209757864809][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:15] +[>>][56cdd74fcd592932972476][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:15] + [16/Feb/24 16:16:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:16:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd750d04d7061233809][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:16:16] + [16/Feb/24 16:16:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd752c0b99199760055][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:16:18] + [16/Feb/24 16:16:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd754d7ebe715716572][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:20] + [16/Feb/24 16:16:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd75510f26195956915][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:21] +] + [16/Feb/24 16:16:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:16:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd79bd309e229060644][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:31] + [16/Feb/24 16:17:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd79d5780e364627616][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:33] + [16/Feb/24 16:17:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7a58a0a6613202470][DEFAULT][/new_pull/index.php][16/Feb/24 16:17:41] + [16/Feb/24 16:17:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7a5ae2c6355349976][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:17:41] +[>>][56cdd7a5b38b6009765737][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:17:41] + [16/Feb/24 16:17:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:17:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7a92c88e895602267][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:45] + [16/Feb/24 16:17:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd7aa33206545454124][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:46] + [16/Feb/24 16:17:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd805967de298288251][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:17] + [16/Feb/24 16:19:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd805be0ae782073950][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:17] +[>>][56cdd805bec66413353812][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:17] + [16/Feb/24 16:19:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:19:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd80786226789187824][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:19:19] + [16/Feb/24 16:19:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd8095974e655116978][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:21] + [16/Feb/24 16:19:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd8097cdb6299910982][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:21] +[>>][56cdd8097d19e823329844][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:21] + [16/Feb/24 16:19:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:19:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd80b9f096714462089][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:19:23] + [16/Feb/24 16:19:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd80cd6b36843714474][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:19:24] + [16/Feb/24 16:19:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd82ead326770653626][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:58] + [16/Feb/24 16:19:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd82ed403e513985486][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:58] +[>>][56cdd82ed4bf6247288221][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:58] + [16/Feb/24 16:19:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:19:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd83104bd6755324391][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:01] + [16/Feb/24 16:20:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd8324dbce270382204][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:02] + [16/Feb/24 16:20:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd85678766820416913][DEFAULT][/new_pull/index.php][16/Feb/24 16:20:38] + [16/Feb/24 16:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd856a041e296472045][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:20:38] +[>>][56cdd856a041e571119145][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:20:38] + [16/Feb/24 16:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd858aaffe359649848][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:40] + [16/Feb/24 16:20:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd85a404f6147730822][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:42] + [16/Feb/24 16:20:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd92d1e9e6621601245][DEFAULT][/new_pull/index.php][16/Feb/24 16:24:13] + [16/Feb/24 16:24:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd92d44b46321927299][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:24:13] +[>>][56cdd92d49196064016632][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:24:13] + [16/Feb/24 16:24:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:24:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd92f360e6042043443][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:24:15] + [16/Feb/24 16:24:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd930a4a6e433553142][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:24:16] + [16/Feb/24 16:24:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9876d3b6550493803][DEFAULT][/new_pull/index.php][16/Feb/24 16:25:43] + [16/Feb/24 16:25:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd98792576794712971][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:25:43] +[>>][56cdd987992d6584861089][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:25:43] + [16/Feb/24 16:25:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:25:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9897c5e6546960617][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:25:45] + [16/Feb/24 16:25:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd98aaac16531981572][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:25:46] + [16/Feb/24 16:25:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9a69a276957557446][DEFAULT][/new_pull/index.php][16/Feb/24 16:26:14] + [16/Feb/24 16:26:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9a6bd4f6762558997][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:26:14] +[>>][56cdd9a6bec66277587834][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:26:14] + [16/Feb/24 16:26:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:26:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9a8da1e6654020718][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:26:16] + [16/Feb/24 16:26:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9aa3ce46298627661][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:26:18] + [16/Feb/24 16:26:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9edd4fde264957682][DEFAULT][/new_pull/index.php][16/Feb/24 16:27:25] + [16/Feb/24 16:27:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9ee0672e527539498][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:27:26] +[>>][56cdd9ee0866e102968365][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:27:26] + [16/Feb/24 16:27:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:27:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9efa7d36378626087][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:27:27] + [16/Feb/24 16:27:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdd9f137086495771972][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:27:29] + [16/Feb/24 16:27:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdda17bc556703473785][DEFAULT][/new_pull/index.php][16/Feb/24 16:28:07] + [16/Feb/24 16:28:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdda17dfbbe072471429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:28:07] +[>>][56cdda17e51ae027265386][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:28:07] + [16/Feb/24 16:28:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:28:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdda196cbe6029386694][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:28:09] + [16/Feb/24 16:28:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdda1a7ae76551718704][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:28:10] + [16/Feb/24 16:28:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd8526d41289964609][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:45] + [16/Feb/24 16:42:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd854b740823655545][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:45] +[>>][56cddd8552c73154705265][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:45] + [16/Feb/24 16:42:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:42:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd8ecd531819005079][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:42:54] + [16/Feb/24 16:42:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd907a99f877522936][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:56] + [16/Feb/24 16:42:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd90a4990848093370][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:56] + [16/Feb/24 16:42:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd90b66bf737963169][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:56] + [16/Feb/24 16:42:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd9218fbf835839303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:42:58] + [16/Feb/24 16:42:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd9406b87106959455][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:00] + [16/Feb/24 16:43:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddd97cf7f5678161815][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:43:03] + [16/Feb/24 16:43:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdddc5d198e978373444][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:49] + [16/Feb/24 16:43:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddddac6a25910406555][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:44:10] + [16/Feb/24 16:44:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde439e398533468253][DEFAULT][/new_pull/index.php][16/Feb/24 16:45:55] + [16/Feb/24 16:45:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde43c8771471214602][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:45:55] +[>>][56cdde43c9711485239463][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:45:55] + [16/Feb/24 16:45:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:45:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde458907f017237249][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:45:57] + [16/Feb/24 16:45:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde4842c8e280431495][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:00] + [16/Feb/24 16:46:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde4cddaed217196153][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:04] + [16/Feb/24 16:46:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde5940839276307543][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:17] + [16/Feb/24 16:46:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdde63052e9506021992][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:27] + [16/Feb/24 16:46:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf05126a4381421325][DEFAULT][/new_pull/index.php][16/Feb/24 16:49:09] + [16/Feb/24 16:49:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf053e1ee589816601][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:49:09] +[>>][56cddf053e9be706051361][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:49:09] + [16/Feb/24 16:49:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:49:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf07b513f545305567][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:11] + [16/Feb/24 16:49:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf0a1d095178732839][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:14] + [16/Feb/24 16:49:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf0d6755f069674226][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:17] + [16/Feb/24 16:49:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf28a48c4636747109][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:44] + [16/Feb/24 16:49:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf2c9969f971628486][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:48] + [16/Feb/24 16:49:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf9b9b534071325709][DEFAULT][/new_pull/index.php][16/Feb/24 16:51:39] + [16/Feb/24 16:51:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf9bc706c541513048][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:51:39] +[>>][56cddf9bc83f4622998629][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:51:39] + [16/Feb/24 16:51:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 16:51:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf9d7b57c507805593][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:41] + [16/Feb/24 16:51:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddf9f95f44974319228][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:51:43] + [16/Feb/24 16:51:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cddfa355804730340159][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:47] + [16/Feb/24 16:51:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde1aad185d038529021][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:26] + [16/Feb/24 17:00:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde1ab04344378504618][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:27] +[>>][56cde1ab052e5206147195][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:27] + [16/Feb/24 17:00:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:00:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde1c66b2b2582771344][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:54] + [16/Feb/24 17:00:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde1c6946eb983703601][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:54] +[>>][56cde1c69856d827959548][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:54] + [16/Feb/24 17:00:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:00:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde224262ad289305157][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:28] + [16/Feb/24 17:02:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde22454120327891523][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:28] +[>>][56cde224554a8724337215][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:28] + [16/Feb/24 17:02:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:02:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde2391de3e729614716][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:49] + [16/Feb/24 17:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde239437dd658714462][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:49] +[>>][56cde23946e8e517061948][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:49] + [16/Feb/24 17:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde23abed1b592405895][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:50] + [16/Feb/24 17:02:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde23d6354a055490610][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:02:53] + [16/Feb/24 17:02:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde23fcc5ed344840782][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:55] + [16/Feb/24 17:02:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde28c63cb5965064671][DEFAULT][/new_pull/index.php][16/Feb/24 17:04:12] + [16/Feb/24 17:04:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde28c8e08f987641496][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:04:12] +[>>][56cde28c8e08f606836403][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:04:12] + [16/Feb/24 17:04:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde28f6fd4e322616083][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:15] + [16/Feb/24 17:04:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde2923f50e472406120][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:04:18] + [16/Feb/24 17:04:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde2946e001067395036][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:20] + [16/Feb/24 17:04:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde38de0fa2470103359][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:29] + [16/Feb/24 17:08:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde38e1790c963560227][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:30] +[>>][56cde38e1984c747760448][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:30] + [16/Feb/24 17:08:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:08:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3980fff0074715365][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:40] + [16/Feb/24 17:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde39837cb9493115236][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:40] +[>>][56cde39839041127882564][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:40] + [16/Feb/24 17:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:08:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde399aa16b458740146][DEFAULT][/lib/issuetrackers/issueTrackerView.php][16/Feb/24 17:08:41] + [16/Feb/24 17:08:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde39af1e5d707091239][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:42] + [16/Feb/24 17:08:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde39b2e971543175686][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:43] +[>>][56cde39b2ed59023298260][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:43] + [16/Feb/24 17:08:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:08:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde39c8ba43861010893][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:44] + [16/Feb/24 17:08:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde39ed2410865329354][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:08:46] + [16/Feb/24 17:08:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3a1823db431039516][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:49] + [16/Feb/24 17:08:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3bfdbd97615995324][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:19] + [16/Feb/24 17:09:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c00fff0265151366][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:20] +[>>][56cde3c0107c0413939785][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:20] + [16/Feb/24 17:09:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:09:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c21c40d166482993][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:09:22] + [16/Feb/24 17:09:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c40653c419571576][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:24] + [16/Feb/24 17:09:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c432086203906272][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:24] +[>>][56cde3c432856276711982][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:24] + [16/Feb/24 17:09:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:09:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c5cd589515387246][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:25] + [16/Feb/24 17:09:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3c8331b6512844630][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:09:28] + [16/Feb/24 17:09:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde3cac0870743536308][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:30] + [16/Feb/24 17:09:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde41139c5c862500612][DEFAULT][/new_pull/index.php][16/Feb/24 17:10:41] + [16/Feb/24 17:10:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde41163865373379187][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:10:41] +[>>][56cde41164806071312953][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:10:41] + [16/Feb/24 17:10:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:10:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde41506d6f180546758][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:45] + [16/Feb/24 17:10:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde416d4b20927840710][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:10:46] + [16/Feb/24 17:10:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde41a19c33194692468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:50] + [16/Feb/24 17:10:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde440529aa823761483][DEFAULT][/new_pull/index.php][16/Feb/24 17:11:28] + [16/Feb/24 17:11:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde44077f61939828651][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:11:28] +[>>][56cde4407b613928829865][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:11:28] + [16/Feb/24 17:11:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:11:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde44246b05801402730][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:30] + [16/Feb/24 17:11:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde443ea0f4152437856][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:11:31] + [16/Feb/24 17:11:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde44777a4d066931750][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:35] + [16/Feb/24 17:11:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde4aee364c619997417][DEFAULT][/new_pull/index.php][16/Feb/24 17:13:18] + [16/Feb/24 17:13:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde4af17c8d667027599][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:13:19] +[>>][56cde4af197e5662642760][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:13:19] + [16/Feb/24 17:13:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:13:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde4b1c9575245481606][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:21] + [16/Feb/24 17:13:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde4b399c72358883233][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23] +[>>][56cde4b3a252d520551778][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23] + [16/Feb/24 17:13:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:13:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde4b6d9d28659788331][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:26] + [16/Feb/24 17:13:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde51c8d728975953681][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:08] + [16/Feb/24 17:15:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde51cb4068183284455][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:08] +[>>][56cde51cb6779339999012][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:08] + [16/Feb/24 17:15:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:15:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde51f46397049430279][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:11] + [16/Feb/24 17:15:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5211f737203928741][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:15:13] + [16/Feb/24 17:15:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde524b37cf168435181][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:16] + [16/Feb/24 17:15:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde54e4897b802229738][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:58] + [16/Feb/24 17:15:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde54e74c95990569048][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:58] +[>>][56cde54e74c95711515176][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:58] + [16/Feb/24 17:15:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:15:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5503f5cf260559598][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:00] + [16/Feb/24 17:16:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5527c740184107793][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:02] + [16/Feb/24 17:16:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde554e34ba966740172][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:04] + [16/Feb/24 17:16:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde57521fd7237941921][DEFAULT][/new_pull/index.php][16/Feb/24 17:16:37] + [16/Feb/24 17:16:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5754cf69167181426][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:16:37] +[>>][56cde5754e6d9080148333][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:16:37] + [16/Feb/24 17:16:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:16:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde57ac248d153745955][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:42] + [16/Feb/24 17:16:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde57cda816590249094][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:44] + [16/Feb/24 17:16:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5811c6c5433674195][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:49] + [16/Feb/24 17:16:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde58f11888447434445][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:03] + [16/Feb/24 17:17:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5984f86d697965779][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:12] + [16/Feb/24 17:17:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde59b2e264897158951][DEFAULT][/new_pull/index.php][16/Feb/24 17:17:15] + [16/Feb/24 17:17:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde59b54ba3743800926][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:17:15] +[>>][56cde59b566fc127398987][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:17:15] + [16/Feb/24 17:17:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:17:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde59ce878c110921331][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:16] + [16/Feb/24 17:17:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde59ecb770074195624][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:18] + [16/Feb/24 17:17:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5a15cee7322835761][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:21] + [16/Feb/24 17:17:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5dd52eba767773645][DEFAULT][/new_pull/index.php][16/Feb/24 17:18:21] + [16/Feb/24 17:18:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5dd7b73b747761905][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:18:21] +[>>][56cde5dd7f1d4471560143][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:18:21] + [16/Feb/24 17:18:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:18:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde5e00ea0a793995616][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:18:24] + [16/Feb/24 17:18:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde621b3ce1980865085][DEFAULT][/new_pull/index.php][16/Feb/24 17:19:29] + [16/Feb/24 17:19:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde621dc94a468375482][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:19:29] +[>>][56cde621e0f9b839487438][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:19:29] + [16/Feb/24 17:19:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:19:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6243fe65353288999][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:32] + [16/Feb/24 17:19:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6265b0d1355801072][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:19:34] + [16/Feb/24 17:19:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6287921d380352283][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:36] + [16/Feb/24 17:19:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde683bd08c871548892][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:07] + [16/Feb/24 17:21:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde683eb6cf086791838][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:07] +[>>][56cde683ebab7289734062][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:07] + [16/Feb/24 17:21:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:21:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde687c00fd104685252][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:11] + [16/Feb/24 17:21:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6a45edc1850219207][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:40] + [16/Feb/24 17:21:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6a486e71289784844][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:40] +[>>][56cde6a487e12848609950][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:40] + [16/Feb/24 17:21:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:21:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6a674a3a814691152][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:42] + [16/Feb/24 17:21:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6c056055741922405][DEFAULT][/new_pull/index.php][16/Feb/24 17:22:08] + [16/Feb/24 17:22:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6c07e4ed180652553][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:22:08] +[>>][56cde6c07f48e775701468][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:22:08] + [16/Feb/24 17:22:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:22:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde6c50e5bc021649217][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:22:13] + [16/Feb/24 17:22:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde74cd152e301406534][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:28] + [16/Feb/24 17:24:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde74d076c7853155178][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:29] +[>>][56cde74d0ad79705137437][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:29] + [16/Feb/24 17:24:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:24:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde74f482d2342471663][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:24:31] + [16/Feb/24 17:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde74f6961f531079690][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:24:31] +[>>][56cde74f6ad90855783458][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:24:31] + [16/Feb/24 17:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde74fde94f071772891][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:31] + [16/Feb/24 17:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde75010497275594575][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32] + [16/Feb/24 17:24:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde750903ab747714967][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:32] + [16/Feb/24 17:24:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde750bb725539429019][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:32] + [16/Feb/24 17:24:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:24:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7522da2b997983019][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:34] + [16/Feb/24 17:24:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7552623c969780239][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:24:37] + [16/Feb/24 17:24:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde758a1072943582118][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:40] + [16/Feb/24 17:24:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde79499756118043673][DEFAULT][/new_pull/index.php][16/Feb/24 17:25:40] + [16/Feb/24 17:25:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde794c2f77788000381][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:25:40] +[>>][56cde794c52a0408970196][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:25:40] + [16/Feb/24 17:25:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:25:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde79a90d0b480295332][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:25:46] + [16/Feb/24 17:25:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7b3a33fe570132313][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:26:11] + [16/Feb/24 17:26:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7bc1cb0b143082920][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:26:20] + [16/Feb/24 17:26:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7f29cbaf392692562][DEFAULT][/new_pull/index.php][16/Feb/24 17:27:14] + [16/Feb/24 17:27:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7f2c2936930238073][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:27:14] +[>>][56cde7f2c3cbf961733246][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:27:14] + [16/Feb/24 17:27:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:27:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7f4d7227717975550][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:16] + [16/Feb/24 17:27:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7f6d9618104833735][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:27:18] + [16/Feb/24 17:27:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde7fa463f3996788260][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:22] + [16/Feb/24 17:27:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde94620f01173716668][DEFAULT][/new_pull/index.php][16/Feb/24 17:32:54] + [16/Feb/24 17:32:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde94649781592597573][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:32:54] +[>>][56cde9464ab0a244910058][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:32:54] + [16/Feb/24 17:32:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:32:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde948ac67a756923351][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:32:56] + [16/Feb/24 17:32:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde94a68d1e686221846][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:32:58] + [16/Feb/24 17:32:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cde94da998d458922383][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:33:01] + [16/Feb/24 17:33:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeacbb26f4301283062][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:23] + [16/Feb/24 17:39:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeacbe1508346602734][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:23] +[>>][56cdeacbe2890291928311][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:23] + [16/Feb/24 17:39:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:39:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeacdb181c136191383][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:39:25] + [16/Feb/24 17:39:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeacdd2b6a493231590][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:39:25] +[>>][56cdeacdd3b0a942828807][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:39:25] + [16/Feb/24 17:39:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:39:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeace55f83855565992][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26] + [16/Feb/24 17:39:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeace7b53a677630006][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26] + [16/Feb/24 17:39:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeacfdcc5e449561396][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 17:39:27] + [16/Feb/24 17:39:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdead253dea076324025][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 17:39:30] + [16/Feb/24 17:39:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdead41a8a2741872349][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:32] + [16/Feb/24 17:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdead446004883489034][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:32] +[>>][56cdead448715263430495][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:32] + [16/Feb/24 17:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:39:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdead694ea4626059311][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:34] + [16/Feb/24 17:39:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdead87b53a566991311][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:39:36] + [16/Feb/24 17:39:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdeadab1178948854971][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:38] + [16/Feb/24 17:39:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdebab9a9a8289705493][DEFAULT][/new_pull/index.php][16/Feb/24 17:43:07] + [16/Feb/24 17:43:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdebabc9f8c777242817][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:43:07] +[>>][56cdebabcbae5301676387][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:43:07] + [16/Feb/24 17:43:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:43:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdebad92d6d009246129][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:09] + [16/Feb/24 17:43:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdebaf624c9091880134][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:43:11] + [16/Feb/24 17:43:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdebb381a66527417615][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:15] + [16/Feb/24 17:43:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded2d24d14050117934][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:33] + [16/Feb/24 17:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded2d4d97d896625084][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:33] +[>>][56cded2d4f8be609371502][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:33] + [16/Feb/24 17:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded307ad64605897965][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:49:36] + [16/Feb/24 17:49:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded323aea1541244608][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:38] + [16/Feb/24 17:49:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded32613f9720415714][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:38] +[>>][56cded3262b6a961784281][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:38] + [16/Feb/24 17:49:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:49:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded33c2f05227369908][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:39] + [16/Feb/24 17:49:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded35a08f7535327743][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:49:41] + [16/Feb/24 17:49:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded392172b590225473][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:45] + [16/Feb/24 17:49:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded759cfed203685476][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:45] + [16/Feb/24 17:50:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded75c6426518835970][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:45] +[>>][56cded75c6bf6583253847][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:45] + [16/Feb/24 17:50:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:50:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded7999acb209347792][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:50:49] + [16/Feb/24 17:50:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded7be7db3830665076][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:51] + [16/Feb/24 17:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded7c1c3f4272611678][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:52] +[>>][56cded7c20276844314093][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:52] + [16/Feb/24 17:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:50:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded7d7043a212242556][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:53] + [16/Feb/24 17:50:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded7f4b71b242290026][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:50:55] + [16/Feb/24 17:50:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cded822e763900635150][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:58] + [16/Feb/24 17:50:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdedb8d93b1634366390][DEFAULT][/new_pull/index.php][16/Feb/24 17:51:52] + [16/Feb/24 17:51:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdedb9110a3969445597][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:51:53] +[>>][56cdedb9110a3406448517][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:51:53] + [16/Feb/24 17:51:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:51:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdedbb2ee07497911199][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:51:55] + [16/Feb/24 17:51:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdedbd8fdbf105180242][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:51:57] + [16/Feb/24 17:51:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdedc0df493140708953][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:52:00] + [16/Feb/24 17:52:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee34f0861337836035][DEFAULT][/new_pull/index.php][16/Feb/24 17:53:56] + [16/Feb/24 17:53:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee3521fc1782850853][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:53:57] +[>>][56cdee3523f01188214842][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:53:57] + [16/Feb/24 17:53:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:53:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee370ff71790734711][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:53:59] + [16/Feb/24 17:53:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee393ee4c479114790][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:54:01] + [16/Feb/24 17:54:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee3bc4803050740966][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:03] + [16/Feb/24 17:54:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee70e2d9b420623852][DEFAULT][/new_pull/index.php][16/Feb/24 17:54:56] + [16/Feb/24 17:54:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee7113d2a925146322][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:54:57] +[>>][56cdee711549b687369217][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:54:57] + [16/Feb/24 17:54:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/24 17:54:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee72a55ea100444257][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:58] + [16/Feb/24 17:54:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee746e3cb139766171][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:55:00] + [16/Feb/24 17:55:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cdee77621a2002588404][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:55:03] + [16/Feb/24 17:55:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb82674d70814035470][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:34] + [16/Feb/25 08:15:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb826c7db2820080214][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:34] + [16/Feb/25 08:15:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb82e3ce09098946912][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42] + [16/Feb/25 08:15:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb82e73537001387876][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:42] + [16/Feb/25 08:15:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb82e98aee464732027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:15:42] +[>>][56ceb82e9a647323274227][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:15:42] + [16/Feb/25 08:15:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:15:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb85a77160672167853][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:26] + [16/Feb/25 08:16:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb85e75b80172943384][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:16:30] + [16/Feb/25 08:16:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb861de0ce838055776][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:33] + [16/Feb/25 08:16:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb90f24951383266990][DEFAULT][/new_pull/index.php][16/Feb/25 08:19:27] + [16/Feb/25 08:19:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb90f44cfe781339336][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:19:27] +[>>][56ceb90f4646e884561227][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:19:27] + [16/Feb/25 08:19:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:19:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb911b04b2685696384][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:29] + [16/Feb/25 08:19:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb913bbd16104939689][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:19:31] + [16/Feb/25 08:19:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceb91754254602708167][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:35] + [16/Feb/25 08:19:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebd19ab1dc930398949][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:36:41] + [16/Feb/25 08:36:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebd439bc85719162106][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:37:23] + [16/Feb/25 08:37:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebda39edbe334312672][DEFAULT][/new_pull/index.php][16/Feb/25 08:38:59] + [16/Feb/25 08:38:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebda3c04f3211639369][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:38:59] +[>>][56cebda3c0cc4619983405][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:38:59] + [16/Feb/25 08:38:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:38:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebda59850b743817907][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:01] + [16/Feb/25 08:39:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebda7eb22d213071839][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:39:03] + [16/Feb/25 08:39:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cebdafc1944164079539][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:11] + [16/Feb/25 08:39:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec194ae5cd445552189][DEFAULT][/new_pull/index.php][16/Feb/25 08:55:48] + [16/Feb/25 08:55:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec194cf14a853093278][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:55:48] +[>>][56cec194cf14a679482397][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:55:48] + [16/Feb/25 08:55:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:55:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec196a2b10049943810][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:55:50] + [16/Feb/25 08:55:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec1994f42a168763996][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:55:53] + [16/Feb/25 08:55:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec1a1141fa174687609][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:56:01] + [16/Feb/25 08:56:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec203ba59d305112165][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:39] + [16/Feb/25 08:57:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec203dc88b177388932][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:39] +[>>][56cec203dd05b853171726][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:39] + [16/Feb/25 08:57:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:57:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec206760ed406951437][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 08:57:42] + [16/Feb/25 08:57:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec20697052335704776][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 08:57:42] + [16/Feb/25 08:57:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec206f2950874773750][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:42] + [16/Feb/25 08:57:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec20720616981918404][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43] + [16/Feb/25 08:57:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec207b4582879396529][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:43] + [16/Feb/25 08:57:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec207d7428558262395][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:43] +[>>][56cec207d9b39975685350][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:43] + [16/Feb/25 08:57:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 08:57:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec2094be3f119053709][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:45] + [16/Feb/25 08:57:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec20b543db617776465][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:57:47] + [16/Feb/25 08:57:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec21026374338879716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:52] + [16/Feb/25 08:57:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec2ef8bdc7972440570][DEFAULT][/new_pull/index.php][16/Feb/25 09:01:35] + [16/Feb/25 09:01:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec2efaadec031365934][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:01:35] +[>>][56cec2efaadec822349636][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:01:35] + [16/Feb/25 09:01:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:01:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec2f21b5fd628334712][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:01:38] + [16/Feb/25 09:01:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3397f9d6605127411][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:49] + [16/Feb/25 09:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3399f1be867387383][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:49] +[>>][56cec3399f5a6488189522][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:49] + [16/Feb/25 09:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:02:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec33b5fa1e576427480][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:02:51] + [16/Feb/25 09:02:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec33cb5536170887581][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:52] + [16/Feb/25 09:02:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec33cd6876465920807][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:52] +[>>][56cec33cd7fe6333947422][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:52] + [16/Feb/25 09:02:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:02:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec33de1456447602150][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:02:53] + [16/Feb/25 09:02:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec342a3426857754222][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:02:58] + [16/Feb/25 09:02:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec34d2b246049333312][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:03:09] + [16/Feb/25 09:03:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3cf2d956599830401][DEFAULT][/new_pull/index.php][16/Feb/25 09:05:19] + [16/Feb/25 09:05:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3cf507ee528668110][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:05:19] +[>>][56cec3cf513a6587389697][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:05:19] + [16/Feb/25 09:05:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:05:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3da52efe561462376][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:30] + [16/Feb/25 09:05:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3dc7c70e955120315][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:05:32] + [16/Feb/25 09:05:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec3e3002c6772970468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:39] + [16/Feb/25 09:05:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4154f84e050373579][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:06:29] + [16/Feb/25 09:06:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec41f51f5e275898650][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:39] + [16/Feb/25 09:06:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec42e34e86635378700][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:54] + [16/Feb/25 09:06:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec42f899fe192743716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:55] + [16/Feb/25 09:06:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec43111c06788280232][DEFAULT][/new_pull/index.php][16/Feb/25 09:06:57] + [16/Feb/25 09:06:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec43134e86132910726][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:06:57] +[>>][56cec4313526e860727468][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:06:57] + [16/Feb/25 09:06:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4346ffd6328424491][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:00] + [16/Feb/25 09:07:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4377de7e351904430][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:07:03] + [16/Feb/25 09:07:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec43e57936515197359][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:10] + [16/Feb/25 09:07:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4eb7ea36931267924][DEFAULT][/new_pull/index.php][16/Feb/25 09:10:03] + [16/Feb/25 09:10:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4eb9f5a6114491579][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:10:03] +[>>][56cec4eb9fd76441611109][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:10:03] + [16/Feb/25 09:10:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:10:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4edd1286042847899][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:05] + [16/Feb/25 09:10:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4f2e6a46768722939][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:10] + [16/Feb/25 09:10:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4f52315e365828385][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:10:13] + [16/Feb/25 09:10:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec4f954a56615610468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:17] + [16/Feb/25 09:10:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5451f2de752349606][DEFAULT][/new_pull/index.php][16/Feb/25 09:11:33] + [16/Feb/25 09:11:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5453e2f6339613920][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:11:33] +[>>][56cec5453fe4e403609475][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:11:33] + [16/Feb/25 09:11:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:11:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5471faae707979053][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:35] + [16/Feb/25 09:11:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec54a244e6968879119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:38] + [16/Feb/25 09:11:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec552cf346446531212][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:46] + [16/Feb/25 09:11:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec557ecfd6403257409][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:51] + [16/Feb/25 09:11:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5605cf26499342682][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:00] + [16/Feb/25 09:12:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5720e16e787903324][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:18] + [16/Feb/25 09:12:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5768a99e302151522][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:22] + [16/Feb/25 09:12:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec57b7bb56390698803][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:27] + [16/Feb/25 09:12:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec59129ebe406458927][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:49] + [16/Feb/25 09:12:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec595afb5e429847433][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:53] + [16/Feb/25 09:12:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5988c8de396516218][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:56] + [16/Feb/25 09:12:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec59caa56e667317908][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:00] + [16/Feb/25 09:13:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5a60b28e671912598][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:13:10] + [16/Feb/25 09:13:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec5ad847f6369170280][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:17] + [16/Feb/25 09:13:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7666118e397360732][DEFAULT][/new_pull/index.php][16/Feb/25 09:20:38] + [16/Feb/25 09:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec766820e6012420355][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:20:38] +[>>][56cec766847f6440576576][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:20:38] + [16/Feb/25 09:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:20:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec768d2dde031847195][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:40] + [16/Feb/25 09:20:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec76ba99b6130854020][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:43] + [16/Feb/25 09:20:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec77652346884748330][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:54] + [16/Feb/25 09:20:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec779e8986870985918][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:57] + [16/Feb/25 09:20:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7a36483e038301605][DEFAULT][/new_pull/index.php][16/Feb/25 09:21:39] + [16/Feb/25 09:21:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7a3820e6860585397][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:21:39] +[>>][56cec7a384026919224718][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:21:39] + [16/Feb/25 09:21:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:21:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7a602dbe547828040][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:42] + [16/Feb/25 09:21:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7a855226445016913][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:21:44] + [16/Feb/25 09:21:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7b0d64ed410309487][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:52] + [16/Feb/25 09:21:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7b41295d993426507][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:56] + [16/Feb/25 09:21:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec7b52a0ca968094917][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:57] + [16/Feb/25 09:21:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8d11f28b556621236][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:26:41] + [16/Feb/25 09:26:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8d798a7d796381258][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:26:47] + [16/Feb/25 09:26:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8dd429c9937050532][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:53] + [16/Feb/25 09:26:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8dd677b1378623901][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:53] +] + [16/Feb/25 09:26:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:26:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8df92bf2918399227][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:26:55] + [16/Feb/25 09:26:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8dfb1c17563053032][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:26:55] +[>>][56cec8dfb1c17675503475][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:26:55] + [16/Feb/25 09:26:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:26:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8e016fac868728457][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56] + [16/Feb/25 09:26:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8e043e7e698506489][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56] + [16/Feb/25 09:26:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8e37452e893535626][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:59] + [16/Feb/25 09:26:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8e397ba4869313218][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:59] +[>>][56cec8e39b63e910027729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:59] + [16/Feb/25 09:26:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:26:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8e57420e912183868][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:01] + [16/Feb/25 09:27:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8ee889d2214453329][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:10] + [16/Feb/25 09:27:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8eea85af675364464][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:10] +[>>][56cec8eeaa108648285615][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:10] + [16/Feb/25 09:27:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8f263d7b279473454][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 09:27:14] + [16/Feb/25 09:27:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8f9ad435849180655][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:21] + [16/Feb/25 09:27:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8f9ccc2a309472686][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:21] +[>>][56cec8f9ceb6b404408548][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:21] + [16/Feb/25 09:27:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8ff6fe14245669718][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:27] + [16/Feb/25 09:27:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8ff8bb6f309708518][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:27:27] +[>>][56cec8ff8c727225985192][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:27:27] + [16/Feb/25 09:27:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec8ffd573d072082758][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:27] + [16/Feb/25 09:27:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9000c0a7127719303][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:28] + [16/Feb/25 09:27:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9023bf22515763193][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:27:30] + [16/Feb/25 09:27:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9051dbe2649764969][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:33] + [16/Feb/25 09:27:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9053f700466173256][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:33] +[>>][56cec9053fed0057751376][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:33] + [16/Feb/25 09:27:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec90ab1d43404273343][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:38] + [16/Feb/25 09:27:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec90c960af840784536][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:40] + [16/Feb/25 09:27:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec90cb9726582306480][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:40] +[>>][56cec90cbb27e738143990][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:40] + [16/Feb/25 09:27:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec90ec1109182764537][DEFAULT][/new_pull/lib/plan/planView.php][16/Feb/25 09:27:42] + [16/Feb/25 09:27:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec910bbbdf677994737][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:44] + [16/Feb/25 09:27:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9194d5ad522170886][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:53] + [16/Feb/25 09:27:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec91bf0c00929702187][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:55] + [16/Feb/25 09:27:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec91c21b8f525440369][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:56] +[>>][56cec91c21b8f471438611][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:56] + [16/Feb/25 09:27:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec91f1fd7b321530481][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:59] + [16/Feb/25 09:27:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec91f3f958695548171][DEFAULT][/new_pull/lib/testcases/listTestCases.php][16/Feb/25 09:27:59] +[>>][56cec91f408f8629326538][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:27:59] + [16/Feb/25 09:27:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:27:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec91fc7187911768189][DEFAULT][/new_pull/lib/ajax/gettprojectnodes.php][16/Feb/25 09:27:59] + [16/Feb/25 09:27:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9216c122106519749][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:28:01] + [16/Feb/25 09:28:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9232d5e8076358479][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:03] + [16/Feb/25 09:28:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92352f87876719018][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:03] +[>>][56cec92353b40130117363][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:03] + [16/Feb/25 09:28:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:28:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec925b3f3f012459328][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:28:05] + [16/Feb/25 09:28:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec925d046b884252030][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:28:05] +[>>][56cec925d046b508585758][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:05] + [16/Feb/25 09:28:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:28:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9261f096723364739][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06] + [16/Feb/25 09:28:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9264abe0980547574][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06] + [16/Feb/25 09:28:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec927af5cd749352459][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:28:07] + [16/Feb/25 09:28:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92909de1796096881][DEFAULT][/new_pull/lib/requirements/reqSpecView.php][16/Feb/25 09:28:09] + [16/Feb/25 09:28:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92b3cf26459201973][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:11] + [16/Feb/25 09:28:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92cd3608667791315][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:12] + [16/Feb/25 09:28:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92d02a3e087512195][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:13] +[>>][56cec92d03dc7933732661][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:13] + [16/Feb/25 09:28:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:28:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec92fe2d52584635907][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:15] + [16/Feb/25 09:28:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec93200521503728436][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:18] + [16/Feb/25 09:28:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9321f92e558891448][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:18] +[>>][56cec932200fe414333218][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:18] + [16/Feb/25 09:28:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:28:18][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec933560c1050530997][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:28:19] + [16/Feb/25 09:28:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec94e4ea61810863740][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:46] + [16/Feb/25 09:28:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec94e6e256594859583][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:46] +[>>][56cec94e6e256521708323][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:46] + [16/Feb/25 09:28:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec95076021955540195][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:48] + [16/Feb/25 09:28:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec951e908c726002161][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:49] + [16/Feb/25 09:28:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9521790b929152980][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:50] +[>>][56cec9521907b576389585][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:50] + [16/Feb/25 09:28:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:28:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec95392a61571975716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:28:51] + [16/Feb/25 09:28:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9623fffb726093993][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:06] + [16/Feb/25 09:29:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec9638a015174640688][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:07] + [16/Feb/25 09:29:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec96c7bd1b269107378][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:16] + [16/Feb/25 09:29:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec96c9f392200900098][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:16] +[>>][56cec96c9f392306050512][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:16] + [16/Feb/25 09:29:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:29:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec971b7848977492449][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:21] + [16/Feb/25 09:29:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec98c92164863232084][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:48] + [16/Feb/25 09:29:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec98cb389a280050889][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:48] +[>>][56cec98cb389a827869410][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:48] + [16/Feb/25 09:29:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:29:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec98e5650c077951002][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:50] + [16/Feb/25 09:29:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec990590cd215147454][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:52] + [16/Feb/25 09:29:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99079c4a256357972][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:52] +[>>][56cec9907a803398678056][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:52] + [16/Feb/25 09:29:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:29:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99287008296688815][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:29:54] + [16/Feb/25 09:29:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99395301873704354][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:55] + [16/Feb/25 09:29:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec993ba0e9295860607][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:55] +[>>][56cec993ba4d1742519147][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:55] + [16/Feb/25 09:29:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:29:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec994caedb011218542][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:29:56] + [16/Feb/25 09:29:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec997122b4944308823][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:59] + [16/Feb/25 09:29:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99735d12066496091][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:59] +[>>][56cec997360fa509788799][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:59] + [16/Feb/25 09:29:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec999da6ee571674593][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:01] + [16/Feb/25 09:30:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99b35ea2284087509][DEFAULT][/new_pull/lib/cfields/cfieldsEdit.php][16/Feb/25 09:30:03] + [16/Feb/25 09:30:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99ca6fcd835700295][DEFAULT][/new_pull/index.php][16/Feb/25 09:30:04] + [16/Feb/25 09:30:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99ccbdb4743757766][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:30:04] +[>>][56cec99ccc584341979919][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:30:04] + [16/Feb/25 09:30:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:30:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cec99f6793f677527604][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:07] + [16/Feb/25 09:30:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca283dff0897895122][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:24] + [16/Feb/25 09:32:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca286a6f2237005429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:24] +[>>][56ceca28700cd278626417][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:24] + [16/Feb/25 09:32:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:32:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca29b105b507373195][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:25] + [16/Feb/25 09:32:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca29da494118786339][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:25] +[>>][56ceca29ddf2e628020408][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:25] + [16/Feb/25 09:32:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:32:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca2bcbede332287090][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:27] + [16/Feb/25 09:32:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca360051f466760846][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:38] + [16/Feb/25 09:32:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca4037805942755642][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:32:48] + [16/Feb/25 09:32:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca5122ac9513935815][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:05] + [16/Feb/25 09:33:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca5149bd9541361480][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:05] +[>>][56ceca514da5a663630373][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:05] + [16/Feb/25 09:33:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:33:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca55edeac314892452][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:33:09] + [16/Feb/25 09:33:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca583566c821619898][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:33:12] + [16/Feb/25 09:33:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca5d04724184939138][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:17] + [16/Feb/25 09:33:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca5d2d38d349528622][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:17] +[>>][56ceca5d2fa9e367200054][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:17] + [16/Feb/25 09:33:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:33:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca94d64e6057102701][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:12] + [16/Feb/25 09:34:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca950b2f6932824024][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:13] +[>>][56ceca950b2f6069141377][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:13] + [16/Feb/25 09:34:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:34:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca97280ba069284124][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:15] + [16/Feb/25 09:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca97514f3169718113][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:15] +[>>][56ceca9752493733452720][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:15] + [16/Feb/25 09:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:34:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca99085a5593728099][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:17] + [16/Feb/25 09:34:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca9b539ac375728486][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:34:19] + [16/Feb/25 09:34:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceca9f7a094486918587][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:23] + [16/Feb/25 09:34:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecb9d223bd146851226][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:37] + [16/Feb/25 09:38:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecb9d4a085670570838][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:37] +[>>][56cecb9d4fe48016798562][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:37] + [16/Feb/25 09:38:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:38:37][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecb9f2c0c9273444316][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:38:39] + [16/Feb/25 09:38:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecba0ab0a1567710279][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:40] + [16/Feb/25 09:38:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecba0d1dc9949863481][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:40] +] + [16/Feb/25 09:38:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:38:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecba1d87a8195386504][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:38:41] + [16/Feb/25 09:38:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa0b5253934768577][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:44] + [16/Feb/25 09:55:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa0e4836063571624][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:44] +[>>][56cecfa0e5007603739161][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:44] + [16/Feb/25 09:55:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:55:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa50c4e2188537335][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:55:49] + [16/Feb/25 09:55:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa69221d727302323][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:50] + [16/Feb/25 09:55:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa6b9afd915980586][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:50] +[>>][56cecfa6baa9d931050929][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:50] + [16/Feb/25 09:55:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 09:55:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cecfa7ec40e634957485][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:55:51] + [16/Feb/25 09:55:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced48a76986222765162][DEFAULT][/new_pull/index.php][16/Feb/25 10:16:42] + [16/Feb/25 10:16:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced48aa1cff125209503][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:16:42] +[>>][56ced48aa47f9997846909][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:16:42] + [16/Feb/25 10:16:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:16:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced48ca96e3193861328][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:16:44] + [16/Feb/25 10:16:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced72de463c767163546][DEFAULT][/new_pull/index.php][16/Feb/25 10:27:57] + [16/Feb/25 10:27:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced72e1943c380873003][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:27:58] +[>>][56ced72e1a7c4678338930][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:27:58] + [16/Feb/25 10:27:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:27:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced72f6a904186293701][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:27:59] + [16/Feb/25 10:27:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7500926c420527187][DEFAULT][/new_pull/index.php][16/Feb/25 10:28:32] + [16/Feb/25 10:28:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced75033634554262764][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:28:32] +[>>][56ced75034da4326526360][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:28:32] + [16/Feb/25 10:28:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:28:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced75247e54787459787][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:28:34] + [16/Feb/25 10:28:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced78d0f7fc545905003][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:33] + [16/Feb/25 10:29:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced78d36ce4920602843][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:33] +[>>][56ced78d3ab64574717301][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:33] + [16/Feb/25 10:29:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:29:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced78f28a54205174681][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:29:35] + [16/Feb/25 10:29:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a3c36e4773079903][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:55] + [16/Feb/25 10:29:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a3ebf54356671801][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:55] +[>>][56ced7a40638c619795937][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:56] + [16/Feb/25 10:29:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:29:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a5c6d94407526373][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:29:57] + [16/Feb/25 10:29:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a730b3c135922826][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:59] + [16/Feb/25 10:29:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a75e5b4798191902][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:59] +[>>][56ced7a75e99c999994018][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:59] + [16/Feb/25 10:29:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:29:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7a8783c4213669762][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:00] + [16/Feb/25 10:30:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7b77b68c000795095][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:15] + [16/Feb/25 10:30:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7b7a1bd4186050229][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:15] +[>>][56ced7b7a2f5c934127359][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:15] + [16/Feb/25 10:30:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:30:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7b9b67dc421216633][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:30:17] + [16/Feb/25 10:30:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7bb43fd4192050632][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:19] + [16/Feb/25 10:30:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7bb6c074568793340][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:19] +[>>][56ced7bb6dbcc267322296][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:19] + [16/Feb/25 10:30:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:30:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced7bcb506c831013399][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:20] + [16/Feb/25 10:30:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced828e26fc149734557][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:08] + [16/Feb/25 10:32:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced8291af94412994024][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:09] +[>>][56ced8291b37c996893798][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:09] + [16/Feb/25 10:32:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced82a99ed4881759070][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:10] + [16/Feb/25 10:32:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced8342c104428509336][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:20] + [16/Feb/25 10:32:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced83455144164583308][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:20] +[>>][56ced83458024376069955][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:20] + [16/Feb/25 10:32:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:32:20][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced83609a3c484083235][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:32:22] + [16/Feb/25 10:32:22][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced836f3484628211976][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:22] + [16/Feb/25 10:32:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced83727e9c714203578][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:23] +[>>][56ced8372bd1c557030841][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:23] + [16/Feb/25 10:32:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:32:23][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced838499ac085417990][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:24] + [16/Feb/25 10:32:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced83e374b4286286045][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:32:30] + [16/Feb/25 10:32:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ced8423edcc162728795][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:34] + [16/Feb/25 10:32:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc7886df8200819278][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:32] + [16/Feb/25 10:50:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc78af689062328970][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:32] +[>>][56cedc78b38f4337905307][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:32] + [16/Feb/25 10:50:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:50:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc7a513fc263108777][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:50:34] + [16/Feb/25 10:50:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc7cdff40446880520][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:50:36] + [16/Feb/25 10:50:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc9308f7f747026915][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:59] + [16/Feb/25 10:50:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc9330488238452640][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:59] +[>>][56cedc9335e64193658645][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:59] + [16/Feb/25 10:50:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:50:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc95e8fcf066246582][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:51:01] + [16/Feb/25 10:51:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc9749244076275383][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:03] + [16/Feb/25 10:51:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc9773246651661743][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:03] +[>>][56cedc9776ce1144328109][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:03] + [16/Feb/25 10:51:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:51:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc98a6788921746018][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:04] + [16/Feb/25 10:51:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedc9c09687409987688][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:08] + [16/Feb/25 10:51:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedcc1b8d56126237372][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:45] + [16/Feb/25 10:51:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedcc1deaed799461057][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:45] +[>>][56cedcc1e025e387310841][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:45] + [16/Feb/25 10:51:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:51:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedcc37e14d939860212][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:47] + [16/Feb/25 10:51:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedcc72bfc2480911719][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:51] + [16/Feb/25 10:51:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedd9d94806663449389][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:25] + [16/Feb/25 10:55:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedd9dbbcfe771025256][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:25] +[>>][56cedd9dbfb80780513870][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:25] + [16/Feb/25 10:55:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:55:25][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedd9f66e43605405058][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:55:27] + [16/Feb/25 10:55:27][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedda110c00950908743][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:29] + [16/Feb/25 10:55:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedda138cb0545813448][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:29] +[>>][56cedda13b3c1444409010][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:29] + [16/Feb/25 10:55:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:55:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedda2a53a1318108984][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:30] + [16/Feb/25 10:55:30][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedda59c059701613073][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:33] + [16/Feb/25 10:55:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddac99c04164075894][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:40] + [16/Feb/25 10:55:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddacbf5a3620514095][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:40] +[>>][56ceddacc380d858532683][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:40] + [16/Feb/25 10:55:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:55:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddae6741f693308616][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:42] + [16/Feb/25 10:55:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddafa83ae268274044][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:43] + [16/Feb/25 10:55:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddb1bb916024923707][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:45] + [16/Feb/25 10:55:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddb1de3d4079778960][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:45] +[>>][56ceddb1dfb45226666092][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:45] + [16/Feb/25 10:55:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:55:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddcf0377a010228022][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:15] + [16/Feb/25 10:56:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddd14dfc9678282484][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:17] + [16/Feb/25 10:56:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedddd522fa363928065][DEFAULT][/new_pull/index.php][16/Feb/25 10:56:29] + [16/Feb/25 10:56:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedddd774c9494671551][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:56:29] +[>>][56cedddd78852311953202][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:56:29] + [16/Feb/25 10:56:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 10:56:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedddf24938441541922][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:31] + [16/Feb/25 10:56:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedde36cf25286200842][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:35] + [16/Feb/25 10:56:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cedde7f3174907629255][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:39] + [16/Feb/25 10:56:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceddeb7a923163411772][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:43] + [16/Feb/25 10:56:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee54c8b99807606198][DEFAULT][/new_pull/index.php][16/Feb/25 12:06:44] + [16/Feb/25 12:06:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee55000bb524213130][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:06:45] +[>>][56ceee5503b54289856259][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:06:45] + [16/Feb/25 12:06:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:06:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee56d2c8d164515183][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:06:46] + [16/Feb/25 12:06:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee5b984e9186168119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:06:51] + [16/Feb/25 12:06:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee64d2e1d029727996][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:00] + [16/Feb/25 12:07:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee6d960f8843204507][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:09] + [16/Feb/25 12:07:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee6fdda65708081123][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:11] + [16/Feb/25 12:07:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee84216c4705269463][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:32] + [16/Feb/25 12:07:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee8e7a0e0494194543][DEFAULT][/new_pull/index.php][16/Feb/25 12:07:42] + [16/Feb/25 12:07:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee8ea15d8926658729][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:07:42] +[>>][56ceee8ea1da8865268321][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:07:42] + [16/Feb/25 12:07:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:07:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee90897c6662063938][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:44] + [16/Feb/25 12:07:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceee92d0d4c584205941][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:46] + [16/Feb/25 12:07:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef15c4a59624540973][DEFAULT][/new_pull/index.php][16/Feb/25 12:09:57] + [16/Feb/25 12:09:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef15eee33476198788][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:09:57] +[>>][56ceef15f386c578716866][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:09:57] + [16/Feb/25 12:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:09:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef1768e3c988691563][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:09:59] + [16/Feb/25 12:09:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef19809f5081145237][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:01] + [16/Feb/25 12:10:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef21b6c73421126158][DEFAULT][/new_pull/index.php][16/Feb/25 12:10:09] + [16/Feb/25 12:10:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef21db28a903036149][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:10:09] +[>>][56ceef21de554903063270][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:10:09] + [16/Feb/25 12:10:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:10:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef23ba7d5397265820][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:11] + [16/Feb/25 12:10:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef2608140567691683][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:14] + [16/Feb/25 12:10:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56ceef391e845663723627][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:33] + [16/Feb/25 12:10:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef109506c5636154506][DEFAULT][/new_pull/index.php][16/Feb/25 12:18:17] + [16/Feb/25 12:18:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef10973953937915293][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:18:17] +[>>][56cef1097b26e627151597][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:18:17] + [16/Feb/25 12:18:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:18:17][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef10b9c29c628601799][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:18:19] + [16/Feb/25 12:18:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef122216bd006231912][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:18:42] + [16/Feb/25 12:18:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1e1641a3143165262][DEFAULT][/new_pull/index.php][16/Feb/25 12:21:53] + [16/Feb/25 12:21:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1e18d5db865452932][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:21:53] +[>>][56cef1e18ddac591710552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:21:53] + [16/Feb/25 12:21:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:21:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1e381737467139972][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:21:55] + [16/Feb/25 12:21:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1edca364888815821][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:05] + [16/Feb/25 12:22:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1f0c0c34692667818][DEFAULT][/new_pull/index.php][16/Feb/25 12:22:08] + [16/Feb/25 12:22:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1f0e812c301757015][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:22:08] +[>>][56cef1f0e8ce5654036929][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:22:08] + [16/Feb/25 12:22:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:22:09][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1f2cdff2553194438][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:22:10] + [16/Feb/25 12:22:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef1f56552b201430308][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:13] + [16/Feb/25 12:22:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef231d98ba602981981][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:13] + [16/Feb/25 12:23:13][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2320ac31718178137][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:14] +[>>][56cef2320b401251720245][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:14] + [16/Feb/25 12:23:14][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef23389439449190262][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:15] + [16/Feb/25 12:23:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef23975251262745402][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:21] + [16/Feb/25 12:23:21][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef23cb04e5303613468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:24] + [16/Feb/25 12:23:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef23e2cfe7694215363][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:26] + [16/Feb/25 12:23:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef24018c6f830088823][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:28] + [16/Feb/25 12:23:28][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef256c5b1d655818793][DEFAULT][/new_pull/logout.php][16/Feb/25 12:23:50] + [16/Feb/25 12:23:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef256d4583721160869][DEFAULT][/new_pull/logout.php][16/Feb/25 12:23:50][16/Feb/25 12:23:50][took 0.009001 secs] +[>>][56cef256ebc8d895902244][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:50] + [16/Feb/25 12:23:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef256ebc8d895902244][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:50][16/Feb/25 12:23:51][took 0.069007 secs] +[>>][56cef257087dc136066344][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:51] + [16/Feb/25 12:23:51][L18N][][GUI] + string 'login' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:23:51][L18N][][GUI] + string 'demo_usage' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:23:51][L18N][][GUI] + string 'new_style_login' is not localized for locale 'de_DE' - using en_GB +[<<][56cef257087dc136066344][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:51][16/Feb/25 12:23:51][took 0.029003 secs] +[>>][56cef25c957f2536558721][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56] + [16/Feb/25 12:23:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef25c957f2536558721][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56][16/Feb/25 12:23:56][took 0.074007 secs] +[>>][56cef25ca7cf1741889036][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56] +[<<][56cef25ca7cf1741889036][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56][16/Feb/25 12:23:56][took 0.008001 secs] +[>>][56cef25caa01a462203878][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56] +[>>][56cef25cc7cb6078970869][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:56] + [16/Feb/25 12:23:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef25ced26d438051403][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:56] +[>>][56cef25cf091f324683237][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:56] + [16/Feb/25 12:23:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:23:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2618215e696795599][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:24:01] + [16/Feb/25 12:24:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef261a05ca434529009][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:24:01] +[>>][56cef261a34ab216628214][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:24:01] + [16/Feb/25 12:24:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:01][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2621fb61990647366][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02] + [16/Feb/25 12:24:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26244948275327611][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02] + [16/Feb/25 12:24:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef263612c0381234102][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:24:03] + [16/Feb/25 12:24:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2657d8b4515053666][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:05] + [16/Feb/25 12:24:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef265a8c2d216267286][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:05] +[>>][56cef265a97e6552715256][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:05] + [16/Feb/25 12:24:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26780c45048827376][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:24:07] + [16/Feb/25 12:24:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26adbab6020283164][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:10] + [16/Feb/25 12:24:10][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26b108c7638289296][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:11] +[>>][56cef26b108c7526217888][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:11] + [16/Feb/25 12:24:11][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26c1a56f515431248][DEFAULT][/new_pull/logout.php][16/Feb/25 12:24:12] + [16/Feb/25 12:24:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef26c2c686553422136][DEFAULT][/new_pull/logout.php][16/Feb/25 12:24:12][16/Feb/25 12:24:12][took 0.007001 secs] +[>>][56cef26c44178431513813][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:12] + [16/Feb/25 12:24:12][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef26c44178431513813][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:12][16/Feb/25 12:24:12][took 0.069007 secs] +[>>][56cef26c552ef456769919][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:12] + [16/Feb/25 12:24:12][L18N][][GUI] + string 'login' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:12][L18N][][GUI] + string 'demo_usage' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:12][L18N][][GUI] + string 'new_style_login' is not localized for locale 'de_DE' - using en_GB +[<<][56cef26c552ef456769919][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:12][16/Feb/25 12:24:12][took 0.029003 secs] +[>>][56cef26f9a997970169870][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15] + [16/Feb/25 12:24:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[<<][56cef26f9a997970169870][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15][16/Feb/25 12:24:15][took 0.058006 secs] +[>>][56cef26fa8c2d169118971][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15] +[<<][56cef26fa8c2d169118971][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15][16/Feb/25 12:24:15][took 0.009001 secs] +[>>][56cef26fab33e358319347][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15] +[>>][56cef26fc4d71040973993][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:15] + [16/Feb/25 12:24:15][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef26fef14a031278950][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:15] +[>>][56cef26ff202b313372390][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:15] + [16/Feb/25 12:24:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:16][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27350b71596838234][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:19] + [16/Feb/25 12:24:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27895ef9630725316][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:24] + [16/Feb/25 12:24:24][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27d4c51f998997373][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:29] + [16/Feb/25 12:24:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27d69603531812564][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:29] + [16/Feb/25 12:24:29][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27f429a3116962589][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:31] + [16/Feb/25 12:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef27f6ae3c307473228][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:31] +[>>][56cef27f6d165483801805][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:31] + [16/Feb/25 12:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:31][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef28223e93695502303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:24:34] + [16/Feb/25 12:24:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef286370da427153264][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:24:38] + [16/Feb/25 12:24:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef288dab15276347135][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:40] + [16/Feb/25 12:24:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2890ddce121374495][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:41] +[>>][56cef2890f53e677727697][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:41] + [16/Feb/25 12:24:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef293b1358891706046][DEFAULT][/new_pull/lib/usermanagement/userInfo.php][16/Feb/25 12:24:51] + [16/Feb/25 12:24:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2959915e505057335][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:53] + [16/Feb/25 12:24:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef295c0e27481607395][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:53] +[>>][56cef295c96e2289217900][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:53] + [16/Feb/25 12:24:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:24:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef29750211090698994][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:55] + [16/Feb/25 12:24:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef298e22a0318119447][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:56] + [16/Feb/25 12:24:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2a0e25c0195910924][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:25:04] + [16/Feb/25 12:25:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2a10d3a5280266846][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:25:05] + [16/Feb/25 12:25:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2a27023a852496319][DEFAULT][/new_pull/index.php][16/Feb/25 12:25:06] + [16/Feb/25 12:25:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef2a296791033736414][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:25:06] +[>>][56cef2a29b5b3610765483][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:25:06] + [16/Feb/25 12:25:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:25:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef47ea7b88590820567][DEFAULT][/new_pull/index.php][16/Feb/25 12:33:02] + [16/Feb/25 12:33:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef47ecdcd8808492107][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:33:02] +[>>][56cef47ed2327929269987][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:33:02] + [16/Feb/25 12:33:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:33:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef48042da1596883276][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:33:04] + [16/Feb/25 12:33:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef482073d2743656444][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:33:06] + [16/Feb/25 12:33:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef4f626eea397869832][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:02] + [16/Feb/25 12:35:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef4f64c87a476901792][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:02] +[>>][56cef4f650312557195905][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:02] + [16/Feb/25 12:35:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:35:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef4f7d4c2a152885886][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:03] + [16/Feb/25 12:35:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef4f9be4ca087512955][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:05] + [16/Feb/25 12:35:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef51894cba824802776][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:36] + [16/Feb/25 12:35:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef518ba262490941990][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:36] +[>>][56cef518bb9d2619838192][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:36] + [16/Feb/25 12:35:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:35:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef51a0dc92243463061][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:38] + [16/Feb/25 12:35:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef51bd5fb2833373292][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:39] + [16/Feb/25 12:35:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef51e55cea531137972][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:42] + [16/Feb/25 12:35:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef5226f712858352265][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:46] + [16/Feb/25 12:35:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef523d57e2440088124][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:47] + [16/Feb/25 12:35:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef525d01f2523256031][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:49] + [16/Feb/25 12:35:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef52a58012423899672][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:54] + [16/Feb/25 12:35:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef52e6474a312360206][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:58] + [16/Feb/25 12:35:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef530d2132996160804][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:00] + [16/Feb/25 12:36:00][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef558368ea712399636][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:40] + [16/Feb/25 12:36:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef5630fbd2383971199][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:51] + [16/Feb/25 12:36:51][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef5696a8f2066676924][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:57] + [16/Feb/25 12:36:57][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef56b27e8a332754303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:59] + [16/Feb/25 12:36:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef613acf72303897660][DEFAULT][/new_pull/index.php][16/Feb/25 12:39:47] + [16/Feb/25 12:39:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef613d57e2971020275][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:39:47] +[>>][56cef613da9ea522635417][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:39:47] + [16/Feb/25 12:39:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:39:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7f3c522a019477718][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:47] + [16/Feb/25 12:47:47][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7f3ecafa205445848][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:47] +[>>][56cef7f3f308a860873096][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:47] + [16/Feb/25 12:47:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:47:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7fb6d3ea033481030][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:47:55] + [16/Feb/25 12:47:55][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7fca8d0a705553395][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:56] + [16/Feb/25 12:47:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7fcd05da172047298][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:56] +[>>][56cef7fcd38a2717856314][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:56] + [16/Feb/25 12:47:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:47:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef7fe122e2398782478][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:47:58] + [16/Feb/25 12:47:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef805393e2712707271][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:48:05] + [16/Feb/25 12:48:05][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef820cf63a640202590][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:48:32] + [16/Feb/25 12:48:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef82413e3a401318641][DEFAULT][/new_pull/index.php][16/Feb/25 12:48:36] + [16/Feb/25 12:48:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef82439bb2167642739][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:48:36] +[>>][56cef8243d262538948200][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:48:36] + [16/Feb/25 12:48:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:48:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef826218fa630772130][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:48:38] + [16/Feb/25 12:48:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef82641c9a520349534][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:48:38] +[>>][56cef82644792562877062][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:48:38] + [16/Feb/25 12:48:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:48:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef826b0df2952097484][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38] + [16/Feb/25 12:48:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef826d6782559498737][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38] + [16/Feb/25 12:48:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8282c4da011293132][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:48:40] + [16/Feb/25 12:48:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef84f1af82196526847][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:19] + [16/Feb/25 12:49:19][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef855f01aa552230139][DEFAULT][/new_pull/login.php][16/Feb/25 12:49:25] + [16/Feb/25 12:49:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8561d692767639333][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:26] + [16/Feb/25 12:49:26][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef85da0c22110879026][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:33] + [16/Feb/25 12:49:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef85e83f32175118961][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:49:34] + [16/Feb/25 12:49:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef85eef20a723287717][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:49:34] + [16/Feb/25 12:49:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef85f6668a215637950][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:35] + [16/Feb/25 12:49:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8606bc7a803445787][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:36] + [16/Feb/25 12:49:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef89902112955998596][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:33] + [16/Feb/25 12:50:33][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef89e4a552231234626][DEFAULT][/new_pull/login.php][16/Feb/25 12:50:38] + [16/Feb/25 12:50:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef89e689b2032997166][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:38] + [16/Feb/25 12:50:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8a15f92a299644888][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:41] + [16/Feb/25 12:50:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8a22e032107564471][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:50:42] + [16/Feb/25 12:50:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8a2948d2660756785][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:50:42] + [16/Feb/25 12:50:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8a30ec32724122641][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43] + [16/Feb/25 12:50:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef8a32bd0a344812981][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43] + [16/Feb/25 12:50:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef94c4728a911457734][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:32] + [16/Feb/25 12:53:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef94c6fafa305731902][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:32] +[>>][56cef94c73592025068213][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:32] + [16/Feb/25 12:53:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:53:32][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef94faac4a199530636][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:53:35] + [16/Feb/25 12:53:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9537b292962340639][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:39] + [16/Feb/25 12:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9539d95a847919823][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:39] +[>>][56cef953a3b02425866286][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:39] + [16/Feb/25 12:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:53:39][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef955086a2165597764][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:53:41] + [16/Feb/25 12:53:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef95526332651484241][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:53:41] +[>>][56cef955299e2726041890][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:53:41] + [16/Feb/25 12:53:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:53:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef95597f82154724197][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41] + [16/Feb/25 12:53:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef955bc58a465019866][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41] + [16/Feb/25 12:53:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef956afe52626197547][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:53:42] + [16/Feb/25 12:53:42][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef95890e3a188439871][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:44] + [16/Feb/25 12:53:44][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef95cda602304804997][DEFAULT][/new_pull/login.php][16/Feb/25 12:53:48] + [16/Feb/25 12:53:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef95d10f5a995275513][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:49] + [16/Feb/25 12:53:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9606b4aa382810852][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:52] + [16/Feb/25 12:53:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99133a0a690900663][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:41] + [16/Feb/25 12:54:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9915ca4a295594851][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:41] +[>>][56cef9915d21a031928068][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:41] + [16/Feb/25 12:54:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:54:41][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9939d18a094343941][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:54:43] + [16/Feb/25 12:54:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9957ca02692822653][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:45] + [16/Feb/25 12:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef995a2392399893046][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:45] +[>>][56cef995a42d2355320206][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:45] + [16/Feb/25 12:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:54:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef996bbdba482424165][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:54:46] + [16/Feb/25 12:54:46][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef998ac3ba375100780][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:48] + [16/Feb/25 12:54:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef998d57e2972078855][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:48] + [16/Feb/25 12:54:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:54:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99a0b96a022791851][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:54:50] + [16/Feb/25 12:54:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99a2e802883710844][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:54:50] +[>>][56cef99a2f7a2130021686][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:54:50] + [16/Feb/25 12:54:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 12:54:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99aa5272676262735][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50] + [16/Feb/25 12:54:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99ac987a332627243][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50] + [16/Feb/25 12:54:50][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99c8c7ea416673145][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:54:52] + [16/Feb/25 12:54:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef99ebc972838285933][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:54] + [16/Feb/25 12:54:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a2e944a107864982][DEFAULT][/new_pull/login.php][16/Feb/25 12:54:58] + [16/Feb/25 12:54:58][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a30e84a873391778][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:59] + [16/Feb/25 12:54:59][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a6685ca747808610][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:55:02] + [16/Feb/25 12:55:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a74728a290600554][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:55:03] + [16/Feb/25 12:55:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a7ac7a2846878404][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:55:03] + [16/Feb/25 12:55:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a81da7a523149459][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04] + [16/Feb/25 12:55:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cef9a84b8da223440075][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04] + [16/Feb/25 12:55:04][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd0ed7cf3008775959][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:34] + [16/Feb/25 13:09:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd0f0e65c018899018][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:35] +[>>][56cefd0f0fdcd836005405][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:35] + [16/Feb/25 13:09:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:09:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd10c8b85439279761][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 13:09:36] + [16/Feb/25 13:09:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd12617ca392633800][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:38] + [16/Feb/25 13:09:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd128793a800548051][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:38] +[>>][56cefd12888da673060426][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:38] + [16/Feb/25 13:09:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:09:38][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd1428283949233069][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:09:40] + [16/Feb/25 13:09:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd14491e8000782468][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:40] +[>>][56cefd144a571153224785][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:09:40] + [16/Feb/25 13:09:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:09:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd14c1bca416678545][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40] + [16/Feb/25 13:09:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd14e61e1045895980][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40] + [16/Feb/25 13:09:40][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd1733b4b898168830][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:43] + [16/Feb/25 13:09:43][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd19274d6321702144][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:45] + [16/Feb/25 13:09:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd1d4cc1e851464155][DEFAULT][/new_pull/login.php][16/Feb/25 13:09:49] + [16/Feb/25 13:09:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd1d6b85a540031864][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:49] + [16/Feb/25 13:09:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd1fef6b8852994828][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:51] + [16/Feb/25 13:09:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd2177957213284647][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:53] + [16/Feb/25 13:09:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd21dcab1758716993][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:53] + [16/Feb/25 13:09:53][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd2251463752767553][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54] + [16/Feb/25 13:09:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd227624b894742138][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54] + [16/Feb/25 13:09:54][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd86dcb14251347064][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:34] + [16/Feb/25 13:11:34][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd870ee2b862366399][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:35] +[>>][56cefd8717acf422621787][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:35] + [16/Feb/25 13:11:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:11:35][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd88d049e169157026][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 13:11:36] + [16/Feb/25 13:11:36][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd9133c12631612457][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:45] + [16/Feb/25 13:11:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd915d433285044934][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:45] +[>>][56cefd915dfec181485721][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:45] + [16/Feb/25 13:11:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:11:45][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd9440863487934680][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:11:48] + [16/Feb/25 13:11:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd945f4a0875715840][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:11:48] +[>>][56cefd945fc70004050499][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:11:48] + [16/Feb/25 13:11:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 + [16/Feb/25 13:11:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd94d5388781018179][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:48] + [16/Feb/25 13:11:48][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd9504f8f448968982][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:49] + [16/Feb/25 13:11:49][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd9840ddc703183306][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:11:52] + [16/Feb/25 13:11:52][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefd9c17f1b064168975][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:11:56] + [16/Feb/25 13:11:56][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda2e5ad7598148470][DEFAULT][/new_pull/login.php][16/Feb/25 13:12:02] + [16/Feb/25 13:12:02][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda30e97b547403745][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:03] + [16/Feb/25 13:12:03][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda5f0017333990879][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:05] + [16/Feb/25 13:12:06][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda776f2e566736875][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:12:07] + [16/Feb/25 13:12:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda7dacfe664425753][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:12:07] + [16/Feb/25 13:12:07][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda84f6b1320521698][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08] + [16/Feb/25 13:12:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 +[>>][56cefda8734f8251118346][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08] + [16/Feb/25 13:12:08][WARNING][][GUI] + E_NOTICE +Use of undefined constant TL_APICALL - assumed 'TL_APICALL' - in C:\xampp\htdocs\new_pull\lib\functions\common.php - Line 51 diff --git a/logsuserlog1.log b/logsuserlog1.log index 5405988225..73922bc739 100644 --- a/logsuserlog1.log +++ b/logsuserlog1.log @@ -2324,3 +2324,8626 @@ Only variables should be passed by reference - in C:\xampp\htdocs\testlinkPrefix [<<][56cd9c44c4675850873728][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.067 secs] [>>][56cd9c44d5015035277023][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20] [<<][56cd9c44d5015035277023][DEFAULT][/lib/ajax/getrequirementnodes.php][16/Feb/24 12:04:20][16/Feb/24 12:04:20][took 0.0079999999999999 secs] +[<<][56cdcb59e6223963143247][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:25:13][16/Feb/24 15:25:14][took 0.073 secs] +[>>][56cdcb5a044db621666739][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:25:14] +[<<][56cdcb5a044db621666739][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.007 secs] +[<<][56cdcb5a165eb448454467][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.085 secs] +[>>][56cdcb5a2b9c3129354687][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:25:14] +[<<][56cdcb5a2b9c3129354687][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.047 secs] +[<<][56cdcb5a18cfb303712285][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.163 secs] +[>>][56cdcb5a41183708728928][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:25:14] +[<<][56cdcb5a41183708728928][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.01 secs] +[<<][56cdcb5a8b11b810586125][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.1 secs] +[>>][56cdcb5aa3ba3721790234][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14] +[<<][56cdcb5aa3ba3721790234][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.011 secs] +[<<][56cdcb5aafef3266519749][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.072 secs] +[>>][56cdcb5ac1c1b687834426][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14] +[<<][56cdcb5ac1c1b687834426][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:25:14][16/Feb/24 15:25:14][took 0.008 secs] +[<<][56cdcb5c90edb625745085][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:25:16][16/Feb/24 15:25:16][took 0.082 secs] +[>>][56cdcb5ca5313088103113][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:25:16] +[<<][56cdcb5ca5313088103113][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:25:16][16/Feb/24 15:25:16][took 0.078 secs] +[<<][56cdcb5fc52cb417696675][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 15:25:19][16/Feb/24 15:25:19][took 0.093 secs] +[>>][56cdcb5fdbe13752375073][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 15:25:19] +[<<][56cdcb5fdbe13752375073][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 15:25:19][16/Feb/24 15:25:19][took 0.049 secs] +[<<][56cdcb9b5b763444029767][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.059 secs] +[>>][56cdcb9b6a1c3102355564][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:19] +[<<][56cdcb9b6a1c3102355564][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.005 secs] +[<<][56cdcb9b8341b410600388][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.115 secs] +[>>][56cdcb9b9f93b480490897][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:19] +[<<][56cdcb9b9f93b480490897][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.028 secs] +[<<][56cdcb9b8a17b032738117][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.137 secs] +[>>][56cdcb9babc8b934092207][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:19] +[<<][56cdcb9babc8b934092207][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:19][16/Feb/24 15:26:19][took 0.037 secs] +[<<][56cdcb9e3afdb120855371][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.071 secs] +[>>][56cdcb9e4c91b435757895][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:26:22] +[<<][56cdcb9e4c91b435757895][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.006 secs] +[<<][56cdcb9e5abab509583386][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.084 secs] +[>>][56cdcb9e6fb9b684311596][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:26:22] +[<<][56cdcb9e6fb9b684311596][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.036 secs] +[<<][56cdcb9e5da8b123956266][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.146 secs] +[>>][56cdcb9e81cab758064713][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:26:22] +[<<][56cdcb9e81cab758064713][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.01 secs] +[<<][56cdcb9ec75f3730091962][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.086 secs] +[>>][56cdcb9edc9cb657104721][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22] +[<<][56cdcb9edc9cb657104721][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22][16/Feb/24 15:26:22][took 0.01 secs] +[<<][56cdcb9eedf23588461092][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:22][16/Feb/24 15:26:23][took 0.071 secs] +[>>][56cdcb9f0b623204343238][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:23] +[<<][56cdcb9f0b623204343238][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 15:26:23][16/Feb/24 15:26:23][took 0.008 secs] +[<<][56cdcba0e46cb528557980][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:26:24][16/Feb/24 15:26:25][took 0.069 secs] +[>>][56cdcba1015fb150699626][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:26:25] +[<<][56cdcba1015fb150699626][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 15:26:25][16/Feb/24 15:26:25][took 0.058 secs] +[<<][56cdcba2142c3548705936][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.068 secs] +[>>][56cdcba22504b192606405][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:26] +[<<][56cdcba22504b192606405][DEFAULT][/new_pull/index.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.006 secs] +[<<][56cdcba23b3c3672384406][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.077 secs] +[>>][56cdcba24e473738120363][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:26] +[<<][56cdcba24e473738120363][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.03 secs] +[<<][56cdcba23afdb046411386][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.136 secs] +[>>][56cdcba25c31b062741682][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:26] +[<<][56cdcba25c31b062741682][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:26:26][16/Feb/24 15:26:26][took 0.027 secs] +[<<][56cdcba48a94b496391114][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:26:28][16/Feb/24 15:26:28][took 0.071 secs] +[>>][56cdcba49c28b647041201][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:26:28] + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 15:26:28][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdcba49c28b647041201][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:26:28][16/Feb/24 15:26:28][took 0.038 secs] +[<<][56cdcba6b8b93733960465][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:26:30][16/Feb/24 15:26:30][took 0.073 secs] +[>>][56cdcba6cb08b359143024][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:26:30] + [16/Feb/24 15:26:30][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdcba6cb08b359143024][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:26:30][16/Feb/24 15:26:30][took 0.088 secs] +[<<][56cdce21c56b3844858558][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:05][16/Feb/24 15:37:05][took 0.076 secs] +[>>][56cdce21d837b618036314][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:05] +[<<][56cdce21d837b618036314][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:05][16/Feb/24 15:37:05][took 0.0089999999999999 secs] +[<<][56cdce21ee6f3268062916][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:05][16/Feb/24 15:37:06][took 0.092 secs] +[>>][56cdce2210ffb313158742][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:06] +[<<][56cdce2210ffb313158742][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:06][16/Feb/24 15:37:06][took 0.03 secs] +[<<][56cdce220065b584610941][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:06][16/Feb/24 15:37:06][took 0.122 secs] +[>>][56cdce221eabb214794177][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:06] +[<<][56cdce221eabb214794177][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:06][16/Feb/24 15:37:06][took 0.059 secs] +[<<][56cdce239f93b145821328][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 15:37:07][16/Feb/24 15:37:07][took 0.067 secs] +[>>][56cdce23b02db128858097][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 15:37:07] + [16/Feb/24 15:37:07][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 15:37:07][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cdce23b02db128858097][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 15:37:07][16/Feb/24 15:37:07][took 0.036 secs] +[<<][56cdce2595cfb751104395][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.065 secs] +[>>][56cdce25a5ecb750023872][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:09] +[<<][56cdce25a5ecb750023872][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.005 secs] +[<<][56cdce25bfcdb935784866][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.09 secs] +[>>][56cdce25d643b426233904][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:09] +[<<][56cdce25d643b426233904][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.024 secs] +[<<][56cdce25c1833460181388][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.141 secs] +[>>][56cdce25e46cb767061457][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:09] +[<<][56cdce25e46cb767061457][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:09][16/Feb/24 15:37:09][took 0.034 secs] +[<<][56cdce26e3b13210311121][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:10][16/Feb/24 15:37:11][took 0.084 secs] +[>>][56cdce27044db366934141][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:11] + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 15:37:11][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdce27044db366934141][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:11][16/Feb/24 15:37:11][took 0.045 secs] +[<<][56cdce2912383609948895][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:13][16/Feb/24 15:37:13][took 0.089 secs] +[>>][56cdce29286fb837319032][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:13] + [16/Feb/24 15:37:13][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdce29286fb837319032][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:13][16/Feb/24 15:37:13][took 0.084 secs] +[<<][56cdce5285f13640205255][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.073 secs] +[>>][56cdce529840b684695756][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:54] +[<<][56cdce529840b684695756][DEFAULT][/new_pull/index.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.006 secs] +[<<][56cdce52ae39b600877444][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.099 secs] +[>>][56cdce52c6a3b708871912][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:54] +[<<][56cdce52c6a3b708871912][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.025 secs] +[<<][56cdce52b221b089143343][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.132 secs] +[>>][56cdce52d29a3549736546][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:54] +[<<][56cdce52d29a3549736546][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 15:37:54][16/Feb/24 15:37:54][took 0.053 secs] +[<<][56cdce5554233500897072][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:57][16/Feb/24 15:37:57][took 0.071 secs] +[>>][56cdce5565b73278632624][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:57] + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 15:37:57][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdce5565b73278632624][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 15:37:57][16/Feb/24 15:37:57][took 0.035 secs] +[<<][56cdce57457d3160289122][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:59][16/Feb/24 15:37:59][took 0.087 secs] +[>>][56cdce575af93207372121][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:59] + [16/Feb/24 15:37:59][WARNING][4inpv8utgti1g3oaae5fpc8nl5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdce575af93207372121][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 15:37:59][16/Feb/24 15:37:59][took 0.029 secs] + [16/Feb/24 16:07:04][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56cdd5282de2a193539878][DEFAULT][/new_pull/login.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.018002 secs] +[<<][56cdd5284979d374909294][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.087009 secs] +[>>][56cdd5285ef66280018971][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:04] +[<<][56cdd5285ef66280018971][DEFAULT][/new_pull/index.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.006001 secs] +[<<][56cdd5287378f691386389][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.086008 secs] +[>>][56cdd52888f57912910693][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:07:04] +[<<][56cdd52888f57912910693][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.024003 secs] +[<<][56cdd52877de0177000294][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.128013 secs] +[>>][56cdd528975d5003363488][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:07:04] +[<<][56cdd528975d5003363488][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:07:04][16/Feb/24 16:07:04][took 0.039004 secs] +[<<][56cdd52a918db605607758][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:07:06][16/Feb/24 16:07:06][took 0.071007 secs] +[>>][56cdd52aa3222537473572][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:07:06] + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:07:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd52aa3222537473572][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:07:06][16/Feb/24 16:07:06][took 0.035004 secs] +[<<][56cdd52ceb360878203251][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:07:08][16/Feb/24 16:07:09][took 0.070007 secs] +[>>][56cdd52d08a67401228701][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:07:09] + [16/Feb/24 16:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd52d08a67401228701][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:07:09][16/Feb/24 16:07:09][took 0.077007 secs] +[<<][56cdd6a2ec0a4113632160][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:22][16/Feb/24 16:13:23][took 0.079008 secs] +[>>][56cdd6a30b6ec249066883][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:23] +[<<][56cdd6a30b6ec249066883][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:23][16/Feb/24 16:13:23][took 0.006001 secs] +[<<][56cdd6a3202fd626294863][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:23][16/Feb/24 16:13:23][took 0.094009 secs] +[>>][56cdd6a33761e649408221][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:23] +[<<][56cdd6a33761e649408221][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:23][16/Feb/24 16:13:23][took 0.026003 secs] +[<<][56cdd6a3287d0382049448][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:23][16/Feb/24 16:13:23][took 0.109011 secs] +[>>][56cdd6a343973850037312][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:23] +[<<][56cdd6a343973850037312][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:23][16/Feb/24 16:13:23][took 0.055006 secs] +[<<][56cdd6a493368678443964][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:13:24][16/Feb/24 16:13:24][took 0.073007 secs] +[>>][56cdd6a4a5867579549591][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:13:24] + [16/Feb/24 16:13:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 16:13:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cdd6a4a5867579549591][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:13:24][16/Feb/24 16:13:24][took 0.037004 secs] +[<<][56cdd6a60bfe8578110632][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.071007 secs] +[>>][56cdd6a61d547262712551][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:26] +[<<][56cdd6a61d547262712551][DEFAULT][/new_pull/index.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.007001 secs] +[<<][56cdd6a635039504988864][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.087009 secs] +[>>][56cdd6a64a802634422659][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:26] +[<<][56cdd6a64a802634422659][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.033003 secs] +[<<][56cdd6a635039017353503][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.146015 secs] +[>>][56cdd6a658e80566619063][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:26] +[<<][56cdd6a658e80566619063][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:13:26][16/Feb/24 16:13:26][took 0.033003 secs] +[<<][56cdd6a7446bb174627958][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:13:27][16/Feb/24 16:13:27][took 0.068007 secs] +[>>][56cdd6a755062101297055][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:13:27] + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd6a755062101297055][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:13:27][16/Feb/24 16:13:27][took 0.036004 secs] +[<<][56cdd6a957453963258342][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:13:29][16/Feb/24 16:13:29][took 0.074008 secs] +[>>][56cdd6a969953316585467][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:13:29] + [16/Feb/24 16:13:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd6a969953316585467][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:13:29][16/Feb/24 16:13:29][took 0.042004 secs] +[<<][56cdd6ca0359c668963015][DEFAULT][/new_pull/index.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.060006 secs] +[>>][56cdd6ca123eb801099250][DEFAULT][/new_pull/index.php][16/Feb/24 16:14:02] +[<<][56cdd6ca123eb801099250][DEFAULT][/new_pull/index.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.005 secs] +[<<][56cdd6ca2a2c4221581490][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.078008 secs] +[>>][56cdd6ca3d764902528899][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:14:02] +[<<][56cdd6ca3d764902528899][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.029003 secs] +[<<][56cdd6ca2a6ac526988770][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.136013 secs] +[>>][56cdd6ca4c1ca151305293][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:14:02] +[<<][56cdd6ca4c1ca151305293][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:14:02][16/Feb/24 16:14:02][took 0.052006 secs] +[<<][56cdd6ccb65f6792670069][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:14:04][16/Feb/24 16:14:04][took 0.071007 secs] +[>>][56cdd6ccc7f3d703769949][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:14:04] + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:14:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd6ccc7f3d703769949][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:14:04][16/Feb/24 16:14:04][took 0.036004 secs] +[<<][56cdd6ce0a0a7507447847][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:14:06][16/Feb/24 16:14:06][took 0.071007 secs] +[>>][56cdd6ce1b606152964699][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:14:06] + [16/Feb/24 16:14:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd6ce1b606152964699][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:14:06][16/Feb/24 16:14:06][took 0.084009 secs] +[<<][56cdd732265d2719858209][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.076007 secs] +[>>][56cdd732392a1049410648][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:46] +[<<][56cdd732392a1049410648][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.007001 secs] +[<<][56cdd7324ee52292256724][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.088009 secs] +[>>][56cdd73264a03586810989][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:46] +[<<][56cdd73264a03586810989][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.029003 secs] +[<<][56cdd73253c74640486334][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.122013 secs] +[>>][56cdd73271cf9162126737][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:46] +[<<][56cdd73271cf9162126737][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:46][16/Feb/24 16:15:46][took 0.055005 secs] +[<<][56cdd73454124798953872][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:15:48][16/Feb/24 16:15:48][took 0.074007 secs] +[>>][56cdd73466a0c353072084][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:15:48] + [16/Feb/24 16:15:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 16:15:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cdd73466a0c353072084][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:15:48][16/Feb/24 16:15:48][took 0.038004 secs] +[<<][56cdd7363aba2542243802][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.064007 secs] +[>>][56cdd7364ad79539128635][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:50] +[<<][56cdd7364ad79539128635][DEFAULT][/new_pull/index.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.006 secs] +[<<][56cdd73663bf3710471740][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.077008 secs] +[>>][56cdd73676cab640968314][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:50] +[<<][56cdd73676cab640968314][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.026002 secs] +[<<][56cdd73664b93915915137][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.121012 secs] +[>>][56cdd7368282f582487184][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:50] +[<<][56cdd7368282f582487184][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:15:50][16/Feb/24 16:15:50][took 0.038003 secs] +[<<][56cdd7380935e314281420][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:15:52][16/Feb/24 16:15:52][took 0.070007 secs] +[>>][56cdd7381aca5725058735][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:15:52] + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:15:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd7381aca5725058735][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:15:52][16/Feb/24 16:15:52][took 0.036004 secs] +[<<][56cdd73989aa6383985996][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:15:53][16/Feb/24 16:15:53][took 0.070007 secs] +[>>][56cdd7399b005610429755][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:15:53] + [16/Feb/24 16:15:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd7399b005610429755][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:15:53][16/Feb/24 16:15:53][took 0.079007 secs] +[<<][56cdd74be8d75867288894][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:11][16/Feb/24 16:16:12][took 0.065007 secs] +[>>][56cdd74c04d0c472558170][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:12] +[<<][56cdd74c04d0c472558170][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:12][16/Feb/24 16:16:12][took 0.005 secs] +[<<][56cdd74c1d3b6539641425][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:12][16/Feb/24 16:16:12][took 0.081008 secs] +[>>][56cdd74c317f6863858619][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:12] +[<<][56cdd74c317f6863858619][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:12][16/Feb/24 16:16:12][took 0.025003 secs] +[<<][56cdd74c1db86482340380][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:12][16/Feb/24 16:16:12][took 0.129013 secs] +[>>][56cdd74c3d763813885673][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:12] +[<<][56cdd74c3d763813885673][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:12][16/Feb/24 16:16:12][took 0.056006 secs] +[<<][56cdd74e38239294516866][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:16:14][16/Feb/24 16:16:14][took 0.067006 secs] +[>>][56cdd74e487f7914795410][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:16:14] + [16/Feb/24 16:16:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 16:16:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cdd74e487f7914795410][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:16:14][16/Feb/24 16:16:14][took 0.033004 secs] +[<<][56cdd74fa4159465503722][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.065006 secs] +[>>][56cdd74fb3f47729101100][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:15] +[<<][56cdd74fb3f47729101100][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.007001 secs] +[<<][56cdd74fcc209757864809][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.075008 secs] +[>>][56cdd74fdeaf1905550289][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:15] +[<<][56cdd74fdeaf1905550289][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.024002 secs] +[<<][56cdd74fcd592932972476][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.117012 secs] +[>>][56cdd74fe9ea6076202376][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:15] +[<<][56cdd74fe9ea6076202376][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:15][16/Feb/24 16:16:15][took 0.037003 secs] +[<<][56cdd750d04d7061233809][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:16:16][16/Feb/24 16:16:16][took 0.068007 secs] +[>>][56cdd750e0e7e686832351][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:16:16] + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:16:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd750e0e7e686832351][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:16:16][16/Feb/24 16:16:16][took 0.033003 secs] +[<<][56cdd752c0b99199760055][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:16:18][16/Feb/24 16:16:18][took 0.073007 secs] +[>>][56cdd752d2cb0410265605][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:16:18] + [16/Feb/24 16:16:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd752d2cb0410265605][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:16:18][16/Feb/24 16:16:18][took 0.077006 secs] +[<<][56cdd754d7ebe715716572][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:20][16/Feb/24 16:16:20][took 0.078 secs] +[>>][56cdd754eb356612368216][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:20] +[<<][56cdd754eb356612368216][DEFAULT][/new_pull/index.php][16/Feb/24 16:16:20][16/Feb/24 16:16:20][took 0.006 secs] +[<<][56cdd75510f26195956915][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:21][16/Feb/24 16:16:21][took 0.075 secs] +[>>][56cdd75523fd6875656408][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:21] +[<<][56cdd75523fd6875656408][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:16:21][16/Feb/24 16:16:21][took 0.024 secs] +[<<][56cdd75510f26463968230][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:21][16/Feb/24 16:16:21][took 0.12 secs] +[>>][56cdd7552ebb6930557723][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:21] +[<<][56cdd7552ebb6930557723][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:16:21][16/Feb/24 16:16:21][took 0.034 secs] +[<<][56cdd79bd309e229060644][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:31][16/Feb/24 16:17:31][took 0.072 secs] +[>>][56cdd79be51ae859483515][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:31] + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:17:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd79be51ae859483515][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:31][16/Feb/24 16:17:31][took 0.034 secs] +[<<][56cdd79d5780e364627616][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:33][16/Feb/24 16:17:33][took 0.074 secs] +[>>][56cdd79d69d06165788748][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:33] + [16/Feb/24 16:17:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd79d69d06165788748][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:33][16/Feb/24 16:17:33][took 0.075 secs] +[<<][56cdd7a58a0a6613202470][DEFAULT][/new_pull/index.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.067 secs] +[>>][56cdd7a59aa46824734545][DEFAULT][/new_pull/index.php][16/Feb/24 16:17:41] +[<<][56cdd7a59aa46824734545][DEFAULT][/new_pull/index.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.006 secs] +[<<][56cdd7a5ae2c6355349976][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.083 secs] +[>>][56cdd7a5c2ece973908319][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:17:41] +[<<][56cdd7a5c2ece973908319][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.027 secs] +[<<][56cdd7a5b38b6009765737][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.12 secs] +[>>][56cdd7a5d115e093344467][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:17:41] +[<<][56cdd7a5d115e093344467][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:17:41][16/Feb/24 16:17:41][took 0.051 secs] +[<<][56cdd7a92c88e895602267][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:45][16/Feb/24 16:17:45][took 0.071 secs] +[>>][56cdd7a93e5b6818504296][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:45] + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:17:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd7a93e5b6818504296][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:17:45][16/Feb/24 16:17:45][took 0.033 secs] +[<<][56cdd7aa33206545454124][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:46][16/Feb/24 16:17:46][took 0.071 secs] +[>>][56cdd7aa44b46844432013][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:46] + [16/Feb/24 16:17:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd7aa44b46844432013][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:17:46][16/Feb/24 16:17:46][took 0.078 secs] +[<<][56cdd805967de298288251][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.068 secs] +[>>][56cdd805a7566626493110][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:17] +[<<][56cdd805a7566626493110][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.006 secs] +[<<][56cdd805be0ae782073950][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.069 secs] +[>>][56cdd805cf606914104087][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:17] +[<<][56cdd805cf606914104087][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.027 secs] +[<<][56cdd805bec66413353812][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.118 secs] +[>>][56cdd805dc126017003027][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:17] +[<<][56cdd805dc126017003027][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:17][16/Feb/24 16:19:17][took 0.054 secs] +[<<][56cdd80786226789187824][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:19:19][16/Feb/24 16:19:19][took 0.071 secs] +[>>][56cdd80797b66618683964][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:19:19] + [16/Feb/24 16:19:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 16:19:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cdd80797b66618683964][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:19:19][16/Feb/24 16:19:19][took 0.034 secs] +[<<][56cdd8095974e655116978][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.062 secs] +[>>][56cdd80968d66565403407][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:21] +[<<][56cdd80968d66565403407][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.006 secs] +[<<][56cdd8097cdb6299910982][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.082 secs] +[>>][56cdd809915d6445965583][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:21] +[<<][56cdd809915d6445965583][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.032 secs] +[<<][56cdd8097d19e823329844][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.139 secs] +[>>][56cdd8099f47e953293186][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:21] +[<<][56cdd8099f47e953293186][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:21][16/Feb/24 16:19:21][took 0.027 secs] +[<<][56cdd80b9f096714462089][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:19:23][16/Feb/24 16:19:23][took 0.07 secs] +[>>][56cdd80bb0206850926107][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:19:23] + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:19:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd80bb0206850926107][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:19:23][16/Feb/24 16:19:23][took 0.032 secs] +[<<][56cdd80cd6b36843714474][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:19:24][16/Feb/24 16:19:24][took 0.071 secs] +[>>][56cdd80ce808e641143113][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:19:24] + [16/Feb/24 16:19:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd80ce808e641143113][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:19:24][16/Feb/24 16:19:25][took 0.076 secs] +[<<][56cdd82ead326770653626][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:58][16/Feb/24 16:19:58][took 0.075 secs] +[>>][56cdd82ebfc06211702084][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:58] +[<<][56cdd82ebfc06211702084][DEFAULT][/new_pull/index.php][16/Feb/24 16:19:58][16/Feb/24 16:19:58][took 0.006 secs] +[<<][56cdd82ed403e513985486][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:58][16/Feb/24 16:19:58][took 0.093 secs] +[>>][56cdd82eeab86582805299][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:58] +[<<][56cdd82eeab86582805299][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:19:58][16/Feb/24 16:19:58][took 0.032 secs] +[<<][56cdd82ed4bf6247288221][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:58][16/Feb/24 16:19:59][took 0.155 secs] +[>>][56cdd82f06b16956427383][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:59] +[<<][56cdd82f06b16956427383][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:19:59][16/Feb/24 16:19:59][took 0.056 secs] +[<<][56cdd83104bd6755324391][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:01][16/Feb/24 16:20:01][took 0.086 secs] +[>>][56cdd83119fae044502051][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:01] + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:20:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd83119fae044502051][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:01][16/Feb/24 16:20:01][took 0.037 secs] +[<<][56cdd8324dbce270382204][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:02][16/Feb/24 16:20:02][took 0.072 secs] +[>>][56cdd8325f50e460884913][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:02] + [16/Feb/24 16:20:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd8325f50e460884913][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:02][16/Feb/24 16:20:02][took 0.076 secs] +[<<][56cdd85678766820416913][DEFAULT][/new_pull/index.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.062 secs] +[>>][56cdd85687d7e248304995][DEFAULT][/new_pull/index.php][16/Feb/24 16:20:38] +[<<][56cdd85687d7e248304995][DEFAULT][/new_pull/index.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.006 secs] +[<<][56cdd856a041e296472045][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.077 secs] +[>>][56cdd856b34ce897818864][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:20:38] +[<<][56cdd856b34ce897818864][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.029 secs] +[<<][56cdd856a041e571119145][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.127 secs] +[>>][56cdd856bfc06355336992][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:20:38] +[<<][56cdd856bfc06355336992][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:20:38][16/Feb/24 16:20:38][took 0.052 secs] +[<<][56cdd858aaffe359649848][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:40][16/Feb/24 16:20:40][took 0.073 secs] +[>>][56cdd858bd4f6356904504][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:40] + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd858bd4f6356904504][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:20:40][16/Feb/24 16:20:40][took 0.033 secs] +[<<][56cdd85a404f6147730822][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:42][16/Feb/24 16:20:42][took 0.072 secs] +[>>][56cdd85a5221e655253780][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:42] + [16/Feb/24 16:20:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd85a5221e655253780][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:20:42][16/Feb/24 16:20:42][took 0.084 secs] +[<<][56cdd92d1e9e6621601245][DEFAULT][/new_pull/index.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.064 secs] +[>>][56cdd92d2ebb6385816903][DEFAULT][/new_pull/index.php][16/Feb/24 16:24:13] +[<<][56cdd92d2ebb6385816903][DEFAULT][/new_pull/index.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.009 secs] +[<<][56cdd92d44b46321927299][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.076 secs] +[>>][56cdd92d57bf6010532350][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:24:13] +[<<][56cdd92d57bf6010532350][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.027 secs] +[<<][56cdd92d49196064016632][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.11 secs] +[>>][56cdd92d6432e248807442][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:24:13] +[<<][56cdd92d6432e248807442][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:24:13][16/Feb/24 16:24:13][took 0.056 secs] +[<<][56cdd92f360e6042043443][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:24:15][16/Feb/24 16:24:15][took 0.078 secs] +[>>][56cdd92f4957e808276085][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:24:15] + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:24:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd92f4957e808276085][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:24:15][16/Feb/24 16:24:15][took 0.041 secs] +[<<][56cdd930a4a6e433553142][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:24:16][16/Feb/24 16:24:16][took 0.073 secs] +[>>][56cdd930b6b7e873814020][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:24:16] + [16/Feb/24 16:24:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd930b6b7e873814020][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:24:16][16/Feb/24 16:24:16][took 0.077 secs] +[<<][56cdd9876d3b6550493803][DEFAULT][/new_pull/index.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.064 secs] +[>>][56cdd9877d19e648643814][DEFAULT][/new_pull/index.php][16/Feb/24 16:25:43] +[<<][56cdd9877d19e648643814][DEFAULT][/new_pull/index.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.007 secs] +[<<][56cdd98792576794712971][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.082 secs] +[>>][56cdd987a69ae673882860][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:25:43] +[<<][56cdd987a69ae673882860][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.027 secs] +[<<][56cdd987992d6584861089][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.104 secs] +[>>][56cdd987b30e6343183619][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:25:43] +[<<][56cdd987b30e6343183619][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:25:43][16/Feb/24 16:25:43][took 0.05 secs] +[<<][56cdd9897c5e6546960617][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:25:45][16/Feb/24 16:25:45][took 0.073 secs] +[>>][56cdd9898e30e525445656][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:25:45] + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:25:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd9898e30e525445656][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:25:45][16/Feb/24 16:25:45][took 0.036 secs] +[<<][56cdd98aaac16531981572][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:25:46][16/Feb/24 16:25:46][took 0.081 secs] +[>>][56cdd98abec66133443742][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:25:46] + [16/Feb/24 16:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd98abec66133443742][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:25:46][16/Feb/24 16:25:46][took 0.075 secs] +[<<][56cdd9a69a276957557446][DEFAULT][/new_pull/index.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.063 secs] +[>>][56cdd9a6a988e237419884][DEFAULT][/new_pull/index.php][16/Feb/24 16:26:14] +[<<][56cdd9a6a988e237419884][DEFAULT][/new_pull/index.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.006 secs] +[<<][56cdd9a6bd4f6762558997][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.071 secs] +[>>][56cdd9a6cee36196774898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:26:14] +[<<][56cdd9a6cee36196774898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.026 secs] +[<<][56cdd9a6bec66277587834][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.113 secs] +[>>][56cdd9a6dad9e016959184][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:26:14] +[<<][56cdd9a6dad9e016959184][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:26:14][16/Feb/24 16:26:14][took 0.047 secs] +[<<][56cdd9a8da1e6654020718][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:26:16][16/Feb/24 16:26:16][took 0.074 secs] +[>>][56cdd9a8ecac6893741899][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:26:16] + [16/Feb/24 16:26:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:26:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:26:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:26:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:26:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:26:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:26:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd9a8ecac6893741899][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:26:16][16/Feb/24 16:26:17][took 0.036 secs] +[<<][56cdd9aa3ce46298627661][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:26:18][16/Feb/24 16:26:18][took 0.073 secs] +[>>][56cdd9aa4eb6e595229234][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:26:18] + [16/Feb/24 16:26:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd9aa4eb6e595229234][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:26:18][16/Feb/24 16:26:18][took 0.073 secs] +[<<][56cdd9edd4fde264957682][DEFAULT][/new_pull/index.php][16/Feb/24 16:27:25][16/Feb/24 16:27:25][took 0.065 secs] +[>>][56cdd9ede4dc6285680384][DEFAULT][/new_pull/index.php][16/Feb/24 16:27:25] +[<<][56cdd9ede4dc6285680384][DEFAULT][/new_pull/index.php][16/Feb/24 16:27:25][16/Feb/24 16:27:25][took 0.005 secs] +[<<][56cdd9ee0672e527539498][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:27:26][16/Feb/24 16:27:26][took 0.083 secs] +[>>][56cdd9ee1af4e419212821][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:27:26] +[<<][56cdd9ee1af4e419212821][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:27:26][16/Feb/24 16:27:26][took 0.03 secs] +[<<][56cdd9ee0866e102968365][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:27:26][16/Feb/24 16:27:26][took 0.174 secs] +[>>][56cdd9ee335ee339898214][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:27:26] +[<<][56cdd9ee335ee339898214][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:27:26][16/Feb/24 16:27:26][took 0.033 secs] +[<<][56cdd9efa7d36378626087][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:27:27][16/Feb/24 16:27:27][took 0.073 secs] +[>>][56cdd9efb9e46803508896][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:27:27] + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:27:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdd9efb9e46803508896][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:27:27][16/Feb/24 16:27:27][took 0.039 secs] +[<<][56cdd9f137086495771972][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:27:29][16/Feb/24 16:27:29][took 0.077 secs] +[>>][56cdd9f14a136100513123][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:27:29] + [16/Feb/24 16:27:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdd9f14a136100513123][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:27:29][16/Feb/24 16:27:29][took 0.077 secs] +[<<][56cdda17bc556703473785][DEFAULT][/new_pull/index.php][16/Feb/24 16:28:07][16/Feb/24 16:28:07][took 0.064 secs] +[>>][56cdda17cc33e291578290][DEFAULT][/new_pull/index.php][16/Feb/24 16:28:07] +[<<][56cdda17cc33e291578290][DEFAULT][/new_pull/index.php][16/Feb/24 16:28:07][16/Feb/24 16:28:07][took 0.005 secs] +[<<][56cdda17dfbbe072471429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:28:07][16/Feb/24 16:28:07][took 0.076 secs] +[>>][56cdda17f249e952402872][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:28:07] +[<<][56cdda17f249e952402872][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:28:07][16/Feb/24 16:28:08][took 0.026 secs] +[<<][56cdda17e51ae027265386][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:28:07][16/Feb/24 16:28:08][took 0.104 secs] +[>>][56cdda180ad7e421697009][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:28:08] +[<<][56cdda180ad7e421697009][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:28:08][16/Feb/24 16:28:08][took 0.053 secs] +[<<][56cdda196cbe6029386694][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:28:09][16/Feb/24 16:28:09][took 0.093 secs] +[>>][56cdda1983b16770250769][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:28:09] + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 73 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 58 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:28:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdda1983b16770250769][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:28:09][16/Feb/24 16:28:09][took 0.034 secs] +[<<][56cdda1a7ae76551718704][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:28:10][16/Feb/24 16:28:10][took 0.072 secs] +[>>][56cdda1a8cf86173523850][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:28:10] + [16/Feb/24 16:28:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 +[<<][56cdda1a8cf86173523850][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:28:10][16/Feb/24 16:28:10][took 0.075 secs] +[<<][56cddd8526d41289964609][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.066006 secs] +[>>][56cddd85372ff799911530][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:45] +[<<][56cddd85372ff799911530][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.006001 secs] +[<<][56cddd854b740823655545][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.086008 secs] +[>>][56cddd8560f08128456672][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:45] +[<<][56cddd8560f08128456672][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.024003 secs] +[<<][56cddd8552c73154705265][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.10101 secs] +[>>][56cddd856bed5525226429][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:45] +[<<][56cddd856bed5525226429][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:45][16/Feb/24 16:42:45][took 0.055005 secs] +[<<][56cddd8ecd531819005079][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:42:54][16/Feb/24 16:42:54][took 0.075007 secs] +[>>][56cddd8edfe18252161173][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:42:54] + [16/Feb/24 16:42:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 16:42:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cddd8edfe18252161173][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 16:42:54][16/Feb/24 16:42:54][took 0.039004 secs] +[<<][56cddd907a99f877522936][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.078008 secs] +[>>][56cddd908e227025164259][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:56] +[<<][56cddd908e227025164259][DEFAULT][/new_pull/index.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.006 secs] +[<<][56cddd90a4990848093370][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.077008 secs] +[>>][56cddd90b7e30446723986][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:56] +[<<][56cddd90b7e30446723986][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.029003 secs] +[<<][56cddd90b66bf737963169][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.086009 secs] +[>>][56cddd90cbe88867021833][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:56] +[<<][56cddd90cbe88867021833][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:42:56][16/Feb/24 16:42:56][took 0.033003 secs] +[<<][56cddd9218fbf835839303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:42:58][16/Feb/24 16:42:58][took 0.076007 secs] +[>>][56cddd922b8a6749438602][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:42:58] + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:42:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 5 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddd922b8a6749438602][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:42:58][16/Feb/24 16:42:58][took 0.034004 secs] +[<<][56cddd9406b87106959455][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:00][16/Feb/24 16:43:00][took 0.071007 secs] +[>>][56cddd94188b7089460224][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:00] + [16/Feb/24 16:43:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cddd94188b7089460224][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:00][16/Feb/24 16:43:00][took 0.028002 secs] +[<<][56cddd97cf7f5678161815][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:43:03][16/Feb/24 16:43:03][took 0.076007 secs] +[>>][56cddd97e24c5183044144][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:43:03] + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:43:03][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:43:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddd97e24c5183044144][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:43:03][16/Feb/24 16:43:03][took 0.042004 secs] +[<<][56cdddc5d198e978373444][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:49][16/Feb/24 16:43:49][took 0.068007 secs] +[>>][56cdddc5e271d947204723][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:49] + [16/Feb/24 16:43:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdddc5e271d947204723][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:43:49][16/Feb/24 16:43:49][took 0.027002 secs] +[<<][56cddddac6a25910406555][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:44:10][16/Feb/24 16:44:10][took 0.068007 secs] +[>>][56cddddad77b4473484098][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:44:10] + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:44:10][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:44:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddddad77b4473484098][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:44:10][16/Feb/24 16:44:10][took 0.038004 secs] +[<<][56cdde439e398533468253][DEFAULT][/new_pull/index.php][16/Feb/24 16:45:55][16/Feb/24 16:45:55][took 0.073007 secs] +[>>][56cdde43b0897684406669][DEFAULT][/new_pull/index.php][16/Feb/24 16:45:55] +[<<][56cdde43b0897684406669][DEFAULT][/new_pull/index.php][16/Feb/24 16:45:55][16/Feb/24 16:45:55][took 0.0060009999999999 secs] +[<<][56cdde43c8771471214602][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:45:55][16/Feb/24 16:45:55][took 0.072007 secs] +[>>][56cdde43da4a0081555530][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:45:55] +[<<][56cdde43da4a0081555530][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:45:55][16/Feb/24 16:45:55][took 0.026003 secs] +[<<][56cdde43c9711485239463][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:45:55][16/Feb/24 16:45:55][took 0.139014 secs] +[>>][56cdde43ebde7348343504][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:45:55] +[<<][56cdde43ebde7348343504][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:45:55][16/Feb/24 16:45:56][took 0.046005 secs] +[<<][56cdde458907f017237249][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:45:57][16/Feb/24 16:45:57][took 0.087009 secs] +[>>][56cdde459ec30649134350][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:45:57] + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:45:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdde459ec30649134350][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:45:57][16/Feb/24 16:45:57][took 0.037003 secs] +[<<][56cdde4842c8e280431495][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:00][16/Feb/24 16:46:00][took 0.081008 secs] +[>>][56cdde4856ce6230342600][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:00] + [16/Feb/24 16:46:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdde4856ce6230342600][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:00][16/Feb/24 16:46:00][took 0.027003 secs] +[<<][56cdde4cddaed217196153][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:04][16/Feb/24 16:46:04][took 0.075007 secs] +[>>][56cdde4cf07bd828638107][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:04] + [16/Feb/24 16:46:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:46:05][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 20 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:46:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 20 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdde4cf07bd828638107][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:04][16/Feb/24 16:46:05][took 0.038004 secs] +[<<][56cdde5940839276307543][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:17][16/Feb/24 16:46:17][took 0.075008 secs] +[>>][56cdde5953121633567264][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:17] + [16/Feb/24 16:46:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdde5953121633567264][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:46:17][16/Feb/24 16:46:17][took 0.029003 secs] +[<<][56cdde63052e9506021992][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:27][16/Feb/24 16:46:27][took 0.066006 secs] +[>>][56cdde63154bf121975166][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:27] + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:46:27][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 25 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:46:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 25 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdde63154bf121975166][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:46:27][16/Feb/24 16:46:27][took 0.039004 secs] +[<<][56cddf05126a4381421325][DEFAULT][/new_pull/index.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.078008 secs] +[>>][56cddf0525f2c165490946][DEFAULT][/new_pull/index.php][16/Feb/24 16:49:09] +[<<][56cddf0525f2c165490946][DEFAULT][/new_pull/index.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.006001 secs] +[<<][56cddf053e9be706051361][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.088009 secs] +[>>][56cddf0554187253790611][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:49:09] +[<<][56cddf0554187253790611][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.033004 secs] +[<<][56cddf053e1ee589816601][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.167017 secs] +[>>][56cddf0567627840415249][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:49:09] +[<<][56cddf0567627840415249][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:49:09][16/Feb/24 16:49:09][took 0.052005 secs] +[<<][56cddf07b513f545305567][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:11][16/Feb/24 16:49:11][took 0.083008 secs] +[>>][56cddf07c9967421077068][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:11] + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 25 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:49:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 25 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddf07c9967421077068][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:11][16/Feb/24 16:49:11][took 0.036004 secs] +[<<][56cddf0a1d095178732839][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:14][16/Feb/24 16:49:14][took 0.072007 secs] +[>>][56cddf0a2e9dc697655140][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:14] + [16/Feb/24 16:49:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cddf0a2e9dc697655140][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:14][16/Feb/24 16:49:14][took 0.081008 secs] +[<<][56cddf0d6755f069674226][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:17][16/Feb/24 16:49:17][took 0.072007 secs] +[>>][56cddf0d7928e240266515][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:17] + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:49:17][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 30 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:49:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 30 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddf0d7928e240266515][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:17][16/Feb/24 16:49:17][took 0.036004 secs] +[<<][56cddf28a48c4636747109][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:44][16/Feb/24 16:49:44][took 0.065006 secs] +[>>][56cddf28b4a9a445415308][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:44] + [16/Feb/24 16:49:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cddf28b4a9a445415308][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:49:44][16/Feb/24 16:49:44][took 0.028003 secs] +[<<][56cddf2c9969f971628486][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:48][16/Feb/24 16:49:48][took 0.068007 secs] +[>>][56cddf2caa046195695502][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:48] + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:49:48][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 35 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:49:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 35 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddf2caa046195695502][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:49:48][16/Feb/24 16:49:48][took 0.037004 secs] +[<<][56cddf9b9b534071325709][DEFAULT][/new_pull/index.php][16/Feb/24 16:51:39][16/Feb/24 16:51:39][took 0.074 secs] +[>>][56cddf9bada2c720971182][DEFAULT][/new_pull/index.php][16/Feb/24 16:51:39] +[<<][56cddf9bada2c720971182][DEFAULT][/new_pull/index.php][16/Feb/24 16:51:39][16/Feb/24 16:51:39][took 0.012 secs] +[<<][56cddf9bc706c541513048][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:51:39][16/Feb/24 16:51:39][took 0.074 secs] +[>>][56cddf9bd9564481242668][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:51:39] +[<<][56cddf9bd9564481242668][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 16:51:39][16/Feb/24 16:51:39][took 0.027 secs] +[<<][56cddf9bc83f4622998629][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:51:39][16/Feb/24 16:51:39][took 0.121 secs] +[>>][56cddf9be646c533194244][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:51:39] +[<<][56cddf9be646c533194244][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 16:51:39][16/Feb/24 16:51:40][took 0.062 secs] +[<<][56cddf9d7b57c507805593][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:41][16/Feb/24 16:51:41][took 0.075 secs] +[>>][56cddf9d8de5c735721242][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:41] + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 35 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:51:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 35 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddf9d8de5c735721242][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:41][16/Feb/24 16:51:41][took 0.041 secs] +[<<][56cddf9f95f44974319228][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:51:43][16/Feb/24 16:51:43][took 0.079 secs] +[>>][56cddf9fa9bac985670965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:51:43] + [16/Feb/24 16:51:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cddf9fa9bac985670965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 16:51:43][16/Feb/24 16:51:43][took 0.03 secs] +[<<][56cddfa355804730340159][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:47][16/Feb/24 16:51:47][took 0.07 secs] +[>>][56cddfa366974891870945][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:47] + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 74 + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 16:51:47][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 59 + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 16:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cddfa366974891870945][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 16:51:47][16/Feb/24 16:51:47][took 0.041 secs] +[<<][56cde1aad185d038529021][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:26][16/Feb/24 17:00:26][took 0.065006 secs] +[>>][56cde1aae1e1b331475096][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:26] +[<<][56cde1aae1e1b331475096][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:26][16/Feb/24 17:00:26][took 0.006001 secs] +[<<][56cde1ab04344378504618][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:27][16/Feb/24 17:00:27][took 0.079007 secs] +[>>][56cde1ab17bcc655802228][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:27] +[<<][56cde1ab17bcc655802228][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:27][16/Feb/24 17:00:27][took 0.024002 secs] +[<<][56cde1ab052e5206147195][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:27][16/Feb/24 17:00:27][took 0.128013 secs] +[>>][56cde1ab24ec2261436500][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:27] +[<<][56cde1ab24ec2261436500][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:27][16/Feb/24 17:00:27][took 0.068007 secs] +[<<][56cde1c66b2b2582771344][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.072008 secs] +[>>][56cde1c67cbfa834270682][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:54] +[<<][56cde1c67cbfa834270682][DEFAULT][/new_pull/index.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.006 secs] +[<<][56cde1c6946eb983703601][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.082009 secs] +[>>][56cde1c6a8b2c090220954][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:54] +[<<][56cde1c6a8b2c090220954][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.026002 secs] +[<<][56cde1c69856d827959548][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.120012 secs] +[>>][56cde1c6b6209954006031][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:54] +[<<][56cde1c6b6209954006031][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:00:54][16/Feb/24 17:00:54][took 0.066007 secs] +[<<][56cde224262ad289305157][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.079008 secs] +[>>][56cde22439f1d523016262][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:28] +[<<][56cde22439f1d523016262][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.006001 secs] +[<<][56cde22454120327891523][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.074007 secs] +[>>][56cde22466237117126196][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:28] +[<<][56cde22466237117126196][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.028003 secs] +[<<][56cde224554a8724337215][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.125012 secs] +[>>][56cde224744cd547312032][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:28] +[<<][56cde224744cd547312032][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:28][16/Feb/24 17:02:28][took 0.062006 secs] +[<<][56cde2391de3e729614716][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.067006 secs] +[>>][56cde2392ebcc256139989][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:49] +[<<][56cde2392ebcc256139989][DEFAULT][/new_pull/index.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.005 secs] +[<<][56cde239437dd658714462][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.075008 secs] +[>>][56cde239560c5562240962][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:49] +[<<][56cde239560c5562240962][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.024002 secs] +[<<][56cde23946e8e517061948][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.108011 secs] +[>>][56cde23961479196052335][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:49] +[<<][56cde23961479196052335][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:02:49][16/Feb/24 17:02:49][took 0.055006 secs] +[<<][56cde23abed1b592405895][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:50][16/Feb/24 17:02:50][took 0.084009 secs] +[>>][56cde23ad392c837152156][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:50] + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:02:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde23ad392c837152156][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:50][16/Feb/24 17:02:50][took 0.039004 secs] +[<<][56cde23d6354a055490610][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:02:53][16/Feb/24 17:02:53][took 0.075007 secs] +[>>][56cde23d75e32735606344][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:02:53] + [16/Feb/24 17:02:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde23d75e32735606344][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:02:53][16/Feb/24 17:02:53][took 0.030003 secs] +[<<][56cde23fcc5ed344840782][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:55][16/Feb/24 17:02:55][took 0.080008 secs] +[>>][56cde23fdfe75514626354][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:55] + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:02:55][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:02:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde23fdfe75514626354][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:02:55][16/Feb/24 17:02:55][took 0.050005 secs] +[<<][56cde28c63cb5965064671][DEFAULT][/new_pull/index.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.064007 secs] +[>>][56cde28c73aa4932009331][DEFAULT][/new_pull/index.php][16/Feb/24 17:04:12] +[<<][56cde28c73aa4932009331][DEFAULT][/new_pull/index.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.006 secs] +[<<][56cde28c8e08f987641496][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.070007 secs] +[>>][56cde28c9f5ee054778707][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:04:12] +[<<][56cde28c9f5ee054778707][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.024002 secs] +[<<][56cde28c8e08f606836403][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.117011 secs] +[>>][56cde28caad8a401640500][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:04:12] +[<<][56cde28caad8a401640500][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:04:12][16/Feb/24 17:04:12][took 0.037004 secs] +[<<][56cde28f6fd4e322616083][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:15][16/Feb/24 17:04:15][took 0.069007 secs] +[>>][56cde28f80add945840836][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:15] + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:04:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde28f80add945840836][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:15][16/Feb/24 17:04:15][took 0.033004 secs] +[<<][56cde2923f50e472406120][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:04:18][16/Feb/24 17:04:18][took 0.068007 secs] +[>>][56cde2925029d670487152][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:04:18] + [16/Feb/24 17:04:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde2925029d670487152][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:04:18][16/Feb/24 17:04:18][took 0.031003 secs] +[<<][56cde2946e001067395036][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:20][16/Feb/24 17:04:20][took 0.072008 secs] +[>>][56cde2947fd31716041121][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:20] + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:04:20][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:04:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde2947fd31716041121][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:04:20][16/Feb/24 17:04:20][took 0.053005 secs] +[<<][56cde38de0fa2470103359][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:29][16/Feb/24 17:08:30][took 0.084009 secs] +[>>][56cde38e01d5b162364724][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:30] +[<<][56cde38e01d5b162364724][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:30][16/Feb/24 17:08:30][took 0.006 secs] +[<<][56cde38e1790c963560227][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:30][16/Feb/24 17:08:30][took 0.077007 secs] +[>>][56cde38e2adab399943260][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:30] +[<<][56cde38e2adab399943260][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:30][16/Feb/24 17:08:30][took 0.024003 secs] +[<<][56cde38e1984c747760448][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:30][16/Feb/24 17:08:30][took 0.121013 secs] +[>>][56cde38e378d1648037530][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:30] +[<<][56cde38e378d1648037530][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:30][16/Feb/24 17:08:30][took 0.060006 secs] +[<<][56cde3980fff0074715365][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.067007 secs] +[>>][56cde39820997527492816][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:40] +[<<][56cde39820997527492816][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.005001 secs] +[<<][56cde39837cb9493115236][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.079008 secs] +[>>][56cde3984b929054659186][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:40] +[<<][56cde3984b929054659186][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.022002 secs] +[<<][56cde39839041127882564][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.124013 secs] +[>>][56cde39857896291550742][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:40] +[<<][56cde39857896291550742][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:40][16/Feb/24 17:08:40][took 0.058006 secs] +[<<][56cde399aa16b458740146][DEFAULT][/lib/issuetrackers/issueTrackerView.php][16/Feb/24 17:08:41][16/Feb/24 17:08:41][took 0.071007 secs] +[>>][56cde399bbab3361285940][DEFAULT][/lib/issuetrackers/issueTrackerView.php][16/Feb/24 17:08:41] +[<<][56cde399bbab3361285940][DEFAULT][/lib/issuetrackers/issueTrackerView.php][16/Feb/24 17:08:41][16/Feb/24 17:08:41][took 0.10601 secs] +[<<][56cde39af1e5d707091239][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:42][16/Feb/24 17:08:43][took 0.086009 secs] +[>>][56cde39b133e6458440101][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:43] +[<<][56cde39b133e6458440101][DEFAULT][/new_pull/index.php][16/Feb/24 17:08:43][16/Feb/24 17:08:43][took 0.006 secs] +[<<][56cde39b2e971543175686][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:43][16/Feb/24 17:08:43][took 0.074007 secs] +[>>][56cde39b40a88252933491][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:43] +[<<][56cde39b40a88252933491][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:08:43][16/Feb/24 17:08:43][took 0.024003 secs] +[<<][56cde39b2ed59023298260][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:43][16/Feb/24 17:08:43][took 0.120012 secs] +[>>][56cde39b4c60d348506113][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:43] +[<<][56cde39b4c60d348506113][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:08:43][16/Feb/24 17:08:43][took 0.038004 secs] +[<<][56cde39c8ba43861010893][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:44][16/Feb/24 17:08:44][took 0.076008 secs] +[>>][56cde39c9e32b276653798][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:44] + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:08:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde39c9e32b276653798][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:44][16/Feb/24 17:08:44][took 0.039004 secs] +[<<][56cde39ed2410865329354][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:08:46][16/Feb/24 17:08:46][took 0.073007 secs] +[>>][56cde39ee4527688019017][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:08:46] + [16/Feb/24 17:08:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde39ee4527688019017][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:08:46][16/Feb/24 17:08:46][took 0.030003 secs] +[<<][56cde3a1823db431039516][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:49][16/Feb/24 17:08:49][took 0.072007 secs] +[>>][56cde3a19410a493660825][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:49] + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:08:49][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:08:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde3a19410a493660825][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:08:49][16/Feb/24 17:08:49][took 0.063007 secs] +[<<][56cde3bfdbd97615995324][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:19][16/Feb/24 17:09:19][took 0.063007 secs] +[>>][56cde3bfeb79e710845813][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:19] +[<<][56cde3bfeb79e710845813][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:19][16/Feb/24 17:09:19][took 0.005 secs] +[<<][56cde3c0107c0413939785][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:20][16/Feb/24 17:09:20][took 0.074008 secs] +[>>][56cde3c0228d8369823037][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:20] +[<<][56cde3c0228d8369823037][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:20][16/Feb/24 17:09:20][took 0.029002 secs] +[<<][56cde3c00fff0265151366][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:20][16/Feb/24 17:09:20][took 0.135014 secs] +[>>][56cde3c031726174365022][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:20] +[<<][56cde3c031726174365022][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:20][16/Feb/24 17:09:20][took 0.054005 secs] +[<<][56cde3c21c40d166482993][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:09:22][16/Feb/24 17:09:22][took 0.070007 secs] +[>>][56cde3c22d584006938551][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:09:22] + [16/Feb/24 17:09:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 17:09:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cde3c22d584006938551][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:09:22][16/Feb/24 17:09:22][took 0.042004 secs] +[<<][56cde3c40653c419571576][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.073007 secs] +[>>][56cde3c418653856327734][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:24] +[<<][56cde3c418653856327734][DEFAULT][/new_pull/index.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.005001 secs] +[<<][56cde3c432856276711982][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.079008 secs] +[>>][56cde3c445cf6883549746][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:24] +[<<][56cde3c445cf6883549746][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.021002 secs] +[<<][56cde3c432086203906272][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.128013 secs] +[>>][56cde3c451c63678664293][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:24] +[<<][56cde3c451c63678664293][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:09:24][16/Feb/24 17:09:24][took 0.039004 secs] +[<<][56cde3c5cd589515387246][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:25][16/Feb/24 17:09:25][took 0.075008 secs] +[>>][56cde3c5dfa89538596977][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:25] + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:09:25][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde3c5dfa89538596977][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:25][16/Feb/24 17:09:25][took 0.035004 secs] +[<<][56cde3c8331b6512844630][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:09:28][16/Feb/24 17:09:28][took 0.076008 secs] +[>>][56cde3c84626e698484085][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:09:28] + [16/Feb/24 17:09:28][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde3c84626e698484085][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:09:28][16/Feb/24 17:09:28][took 0.029003 secs] +[<<][56cde3cac0870743536308][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:30][16/Feb/24 17:09:30][took 0.078008 secs] +[>>][56cde3cad3928368376375][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:30] + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:09:30][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:09:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde3cad3928368376375][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:09:30][16/Feb/24 17:09:30][took 0.064006 secs] +[<<][56cde41139c5c862500612][DEFAULT][/new_pull/index.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.074008 secs] +[>>][56cde4114c544657779861][DEFAULT][/new_pull/index.php][16/Feb/24 17:10:41] +[<<][56cde4114c544657779861][DEFAULT][/new_pull/index.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.006 secs] +[<<][56cde41163865373379187][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.080008 secs] +[>>][56cde411774d5191039093][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:10:41] +[<<][56cde411774d5191039093][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.024003 secs] +[<<][56cde41164806071312953][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.125012 secs] +[>>][56cde4118382a898808729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:10:41] +[<<][56cde4118382a898808729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:10:41][16/Feb/24 17:10:41][took 0.062007 secs] +[<<][56cde41506d6f180546758][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:45][16/Feb/24 17:10:45][took 0.070007 secs] +[>>][56cde415186b7920946943][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:45] + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:10:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde415186b7920946943][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:45][16/Feb/24 17:10:45][took 0.034003 secs] +[<<][56cde416d4b20927840710][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:10:46][16/Feb/24 17:10:46][took 0.077007 secs] +[>>][56cde416e7fc0803667765][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:10:46] + [16/Feb/24 17:10:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde416e7fc0803667765][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:10:46][16/Feb/24 17:10:46][took 0.030003 secs] +[<<][56cde41a19c33194692468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:50][16/Feb/24 17:10:50][took 0.072007 secs] +[>>][56cde41a2bd4a441400402][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:50] + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 22 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:10:50][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:10:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde41a2bd4a441400402][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:10:50][16/Feb/24 17:10:50][took 0.09101 secs] +[<<][56cde440529aa823761483][DEFAULT][/new_pull/index.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.062006 secs] +[>>][56cde440623b0685512323][DEFAULT][/new_pull/index.php][16/Feb/24 17:11:28] +[<<][56cde440623b0685512323][DEFAULT][/new_pull/index.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.005001 secs] +[<<][56cde44077f61939828651][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.090009 secs] +[>>][56cde4408e2e2592293518][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:11:28] +[<<][56cde4408e2e2592293518][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.023003 secs] +[<<][56cde4407b613928829865][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.127012 secs] +[>>][56cde4409aa1f799772429][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:11:28] +[<<][56cde4409aa1f799772429][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:11:28][16/Feb/24 17:11:28][took 0.058005 secs] +[<<][56cde44246b05801402730][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:30][16/Feb/24 17:11:30][took 0.082008 secs] +[>>][56cde4425ab5d111312014][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:30] + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:11:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde4425ab5d111312014][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:30][16/Feb/24 17:11:30][took 0.035004 secs] +[<<][56cde443ea0f4152437856][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:11:31][16/Feb/24 17:11:32][took 0.074007 secs] +[>>][56cde44407fcb872895590][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:11:32] + [16/Feb/24 17:11:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde44407fcb872895590][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:11:32][16/Feb/24 17:11:32][took 0.029003 secs] +[<<][56cde44777a4d066931750][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:35][16/Feb/24 17:11:35][took 0.070007 secs] +[>>][56cde44788bc4892817452][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:35] + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: selectPos - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 20 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: start - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 21 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:11:35][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde44788bc4892817452][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:11:35][16/Feb/24 17:11:35][took 0.068007 secs] +[<<][56cde4aee364c619997417][DEFAULT][/new_pull/index.php][16/Feb/24 17:13:18][16/Feb/24 17:13:19][took 0.078008 secs] +[>>][56cde4af028ac780322932][DEFAULT][/new_pull/index.php][16/Feb/24 17:13:19] +[<<][56cde4af028ac780322932][DEFAULT][/new_pull/index.php][16/Feb/24 17:13:19][16/Feb/24 17:13:19][took 0.005001 secs] +[<<][56cde4af17c8d667027599][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:13:19][16/Feb/24 17:13:19][took 0.079008 secs] +[>>][56cde4af2b515052675005][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:13:19] +[<<][56cde4af2b515052675005][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:13:19][16/Feb/24 17:13:19][took 0.025002 secs] +[<<][56cde4af197e5662642760][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:13:19][16/Feb/24 17:13:19][took 0.127012 secs] +[>>][56cde4af38fda574595165][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:13:19] +[<<][56cde4af38fda574595165][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:13:19][16/Feb/24 17:13:19][took 0.055006 secs] +[<<][56cde4b1c9575245481606][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:21][16/Feb/24 17:13:21][took 0.075007 secs] +[>>][56cde4b1dbe5d444637898][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:21] + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:13:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde4b1dbe5d444637898][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:21][16/Feb/24 17:13:21][took 0.038004 secs] +[<<][56cde4b399c72358883233][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23][16/Feb/24 17:13:23][took 0.087009 secs] +[>>][56cde4b3af823719090827][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23] + [16/Feb/24 17:13:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde4b3af823719090827][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23][16/Feb/24 17:13:23][took 0.027003 secs] +[<<][56cde4b3a252d520551778][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23][16/Feb/24 17:13:23][took 0.111011 secs] +[>>][56cde4b3bdea1181607948][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23] + [16/Feb/24 17:13:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde4b3bdea1181607948][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:13:23][16/Feb/24 17:13:23][took 0.028003 secs] +[<<][56cde4b6d9d28659788331][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:26][16/Feb/24 17:13:26][took 0.072007 secs] +[>>][56cde4b6eb66f306658198][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:26] + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:13:26][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:13:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:13:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde4b6eb66f306658198][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:13:26][16/Feb/24 17:13:27][took 0.041005 secs] +[<<][56cde51c8d728975953681][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.065006 secs] +[>>][56cde51c9d8fe502510218][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:08] +[<<][56cde51c9d8fe502510218][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.006001 secs] +[<<][56cde51cb4068183284455][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.080008 secs] +[>>][56cde51cc7cd8141737615][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:08] +[<<][56cde51cc7cd8141737615][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.024002 secs] +[<<][56cde51cb6779339999012][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.121012 secs] +[>>][56cde51cd4415682947461][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:08] +[<<][56cde51cd4415682947461][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:08][16/Feb/24 17:15:08][took 0.061006 secs] +[<<][56cde51f46397049430279][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:11][16/Feb/24 17:15:11][took 0.075007 secs] +[>>][56cde51f58896674705048][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:11] + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:15:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde51f58896674705048][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:11][16/Feb/24 17:15:11][took 0.034004 secs] +[<<][56cde5211f737203928741][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:15:13][16/Feb/24 17:15:13][took 0.074007 secs] +[>>][56cde52131c36586378762][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:15:13] + [16/Feb/24 17:15:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde52131c36586378762][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:15:13][16/Feb/24 17:15:13][took 0.029003 secs] +[<<][56cde524b37cf168435181][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:16][16/Feb/24 17:15:16][took 0.069007 secs] +[>>][56cde524c4946026209093][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:16] + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:15:16][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:15:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde524c4946026209093][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:15:16][16/Feb/24 17:15:16][took 0.038004 secs] +[<<][56cde54e4897b802229738][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.084009 secs] +[>>][56cde54e5d974932371114][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:58] +[<<][56cde54e5d974932371114][DEFAULT][/new_pull/index.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.007 secs] +[<<][56cde54e74c95990569048][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.10201 secs] +[>>][56cde54e8def8534870620][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:58] +[<<][56cde54e8def8534870620][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.032003 secs] +[<<][56cde54e74c95711515176][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.173018 secs] +[>>][56cde54e9f83f837849636][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:58] +[<<][56cde54e9f83f837849636][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:15:58][16/Feb/24 17:15:58][took 0.075007 secs] +[<<][56cde5503f5cf260559598][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:00][16/Feb/24 17:16:00][took 0.075008 secs] +[>>][56cde55051acf953273089][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:00] + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:16:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde55051acf953273089][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:00][16/Feb/24 17:16:00][took 0.034003 secs] +[<<][56cde5527c740184107793][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:02][16/Feb/24 17:16:02][took 0.073008 secs] +[>>][56cde5528e858862468614][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:02] + [16/Feb/24 17:16:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde5528e858862468614][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:02][16/Feb/24 17:16:02][took 0.030003 secs] +[<<][56cde554e34ba966740172][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:04][16/Feb/24 17:16:05][took 0.077007 secs] +[>>][56cde55502332256199601][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:05] + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 79 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:16:05][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 64 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:16:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde55502332256199601][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:05][16/Feb/24 17:16:05][took 0.046005 secs] +[<<][56cde57521fd7237941921][DEFAULT][/new_pull/index.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.070007 secs] +[>>][56cde5753314e092824312][DEFAULT][/new_pull/index.php][16/Feb/24 17:16:37] +[<<][56cde5753314e092824312][DEFAULT][/new_pull/index.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.005001 secs] +[<<][56cde5754cf69167181426][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.073007 secs] +[>>][56cde5755f468087131265][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:16:37] +[<<][56cde5755f468087131265][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.023002 secs] +[<<][56cde5754e6d9080148333][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.123013 secs] +[>>][56cde5756cf2e113708135][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:16:37] +[<<][56cde5756cf2e113708135][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:16:37][16/Feb/24 17:16:37][took 0.055005 secs] +[<<][56cde57ac248d153745955][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:42][16/Feb/24 17:16:42][took 0.068006 secs] +[>>][56cde57ad321b997382053][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:42] + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 90 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:16:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde57ad321b997382053][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:42][16/Feb/24 17:16:42][took 0.033004 secs] +[<<][56cde57cda816590249094][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:44][16/Feb/24 17:16:44][took 0.075007 secs] +[>>][56cde57ced0fe406004134][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:44] + [16/Feb/24 17:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde57ced0fe406004134][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:16:44][16/Feb/24 17:16:45][took 0.039004 secs] +[<<][56cde5811c6c5433674195][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:49][16/Feb/24 17:16:49][took 0.078007 secs] +[>>][56cde5812fb64770269390][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:49] + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:16:49][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:16:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde5812fb64770269390][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:16:49][16/Feb/24 17:16:49][took 0.054005 secs] +[<<][56cde58f11888447434445][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:03][16/Feb/24 17:17:03][took 0.068007 secs] +[>>][56cde58f22617359326217][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:03] + [16/Feb/24 17:17:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde58f22617359326217][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:03][16/Feb/24 17:17:03][took 0.030003 secs] +[<<][56cde5984f86d697965779][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:12][16/Feb/24 17:17:12][took 0.069007 secs] +[>>][56cde59860dcc668594219][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:12] + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:17:12][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:17:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde59860dcc668594219][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:12][16/Feb/24 17:17:12][took 0.052006 secs] +[<<][56cde59b2e264897158951][DEFAULT][/new_pull/index.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.065006 secs] +[>>][56cde59b3e052695420233][DEFAULT][/new_pull/index.php][16/Feb/24 17:17:15] +[<<][56cde59b3e052695420233][DEFAULT][/new_pull/index.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.007001 secs] +[<<][56cde59b54ba3743800926][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.077008 secs] +[>>][56cde59b67c5b430073777][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:17:15] +[<<][56cde59b67c5b430073777][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.027003 secs] +[<<][56cde59b566fc127398987][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.122012 secs] +[>>][56cde59b74780680198343][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:17:15] +[<<][56cde59b74780680198343][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:17:15][16/Feb/24 17:17:15][took 0.063007 secs] +[<<][56cde59ce878c110921331][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:16][16/Feb/24 17:17:17][took 0.083008 secs] +[>>][56cde59d0898c514003749][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:17] + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 90 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:17:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde59d0898c514003749][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:17][16/Feb/24 17:17:17][took 0.039004 secs] +[<<][56cde59ecb770074195624][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:18][16/Feb/24 17:17:18][took 0.084008 secs] +[>>][56cde59ee0380315471327][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:18] + [16/Feb/24 17:17:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde59ee0380315471327][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:17:18][16/Feb/24 17:17:18][took 0.030003 secs] +[<<][56cde5a15cee7322835761][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:21][16/Feb/24 17:17:21][took 0.076007 secs] +[>>][56cde5a16ff9e312658808][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:21] + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:17:21][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:17:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde5a16ff9e312658808][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:17:21][16/Feb/24 17:17:21][took 0.048005 secs] +[<<][56cde5dd52eba767773645][DEFAULT][/new_pull/index.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.071007 secs] +[>>][56cde5dd64be9244848620][DEFAULT][/new_pull/index.php][16/Feb/24 17:18:21] +[<<][56cde5dd64be9244848620][DEFAULT][/new_pull/index.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.006001 secs] +[<<][56cde5dd7b73b747761905][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.080008 secs] +[>>][56cde5dd8f3ab803038029][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:18:21] +[<<][56cde5dd8f3ab803038029][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.024002 secs] +[<<][56cde5dd7f1d4471560143][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.117012 secs] +[>>][56cde5dd9c2b8904422584][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:18:21] +[<<][56cde5dd9c2b8904422584][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:18:21][16/Feb/24 17:18:21][took 0.057006 secs] +[<<][56cde5e00ea0a793995616][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:18:24][16/Feb/24 17:18:24][took 0.074007 secs] +[>>][56cde5e020f09820466915][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:18:24] + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 80 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 91 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 65 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:18:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde5e020f09820466915][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:18:24][16/Feb/24 17:18:24][took 0.038004 secs] +[<<][56cde621b3ce1980865085][DEFAULT][/new_pull/index.php][16/Feb/24 17:19:29][16/Feb/24 17:19:29][took 0.077008 secs] +[>>][56cde621c7181376045060][DEFAULT][/new_pull/index.php][16/Feb/24 17:19:29] +[<<][56cde621c7181376045060][DEFAULT][/new_pull/index.php][16/Feb/24 17:19:29][16/Feb/24 17:19:29][took 0.006 secs] +[<<][56cde621dc94a468375482][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:19:29][16/Feb/24 17:19:29][took 0.077007 secs] +[>>][56cde621ef619482557239][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:19:29] +[<<][56cde621ef619482557239][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:19:29][16/Feb/24 17:19:30][took 0.024003 secs] +[<<][56cde621e0f9b839487438][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:19:29][16/Feb/24 17:19:30][took 0.117011 secs] +[>>][56cde62209e3f463479928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:19:30] +[<<][56cde62209e3f463479928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:19:30][16/Feb/24 17:19:30][took 0.060006 secs] +[<<][56cde6243fe65353288999][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:32][16/Feb/24 17:19:32][took 0.080008 secs] +[>>][56cde62453ad6366667766][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:32] + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:19:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde62453ad6366667766][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:32][16/Feb/24 17:19:32][took 0.034003 secs] +[<<][56cde6265b0d1355801072][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:19:34][16/Feb/24 17:19:34][took 0.074007 secs] +[>>][56cde6266d1e8329055031][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:19:34] + [16/Feb/24 17:19:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde6266d1e8329055031][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:19:34][16/Feb/24 17:19:34][took 0.029003 secs] +[<<][56cde6287921d380352283][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:36][16/Feb/24 17:19:36][took 0.076008 secs] +[>>][56cde6288c2d5004255507][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:36] + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:19:36][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:19:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde6288c2d5004255507][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:19:36][16/Feb/24 17:19:36][took 0.051005 secs] +[<<][56cde683bd08c871548892][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:07][16/Feb/24 17:21:07][took 0.075007 secs] +[>>][56cde683cf973800076136][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:07] +[<<][56cde683cf973800076136][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:07][16/Feb/24 17:21:07][took 0.006001 secs] +[<<][56cde683eb6cf086791838][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:07][16/Feb/24 17:21:08][took 0.078008 secs] +[>>][56cde6840a92f221800615][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:08] +[<<][56cde6840a92f221800615][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:08][16/Feb/24 17:21:08][took 0.025002 secs] +[<<][56cde683ebab7289734062][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:07][16/Feb/24 17:21:08][took 0.129013 secs] +[>>][56cde6841783c273125215][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:08] +[<<][56cde6841783c273125215][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:08][16/Feb/24 17:21:08][took 0.057006 secs] +[<<][56cde687c00fd104685252][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:11][16/Feb/24 17:21:11][took 0.072007 secs] +[>>][56cde687d1e2c718095567][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:11] + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:21:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde687d1e2c718095567][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:11][16/Feb/24 17:21:11][took 0.034004 secs] +[<<][56cde6a45edc1850219207][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.062006 secs] +[>>][56cde6a46dff7460320081][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:40] +[<<][56cde6a46dff7460320081][DEFAULT][/new_pull/index.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.006001 secs] +[<<][56cde6a486e71289784844][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.079008 secs] +[>>][56cde6a49a311528538420][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:40] +[<<][56cde6a49a311528538420][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.024003 secs] +[<<][56cde6a487e12848609950][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.126012 secs] +[>>][56cde6a4a6e36999744339][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:40] +[<<][56cde6a4a6e36999744339][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:21:40][16/Feb/24 17:21:40][took 0.055006 secs] +[<<][56cde6a674a3a814691152][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:42][16/Feb/24 17:21:42][took 0.079008 secs] +[>>][56cde6a6882c2625443406][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:42] + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde6a6882c2625443406][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:21:42][16/Feb/24 17:21:42][took 0.036003 secs] +[<<][56cde6c056055741922405][DEFAULT][/new_pull/index.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.067007 secs] +[>>][56cde6c066614178412131][DEFAULT][/new_pull/index.php][16/Feb/24 17:22:08] +[<<][56cde6c066614178412131][DEFAULT][/new_pull/index.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.006 secs] +[<<][56cde6c07e4ed180652553][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.074007 secs] +[>>][56cde6c0909ed750088061][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:22:08] +[<<][56cde6c0909ed750088061][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.024002 secs] +[<<][56cde6c07f48e775701468][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.118012 secs] +[>>][56cde6c09c95a152752008][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:22:08] +[<<][56cde6c09c95a152752008][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:22:08][16/Feb/24 17:22:08][took 0.057006 secs] +[<<][56cde6c50e5bc021649217][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:22:13][16/Feb/24 17:22:13][took 0.068006 secs] +[>>][56cde6c51ef62114936280][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:22:13] + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde6c51ef62114936280][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:22:13][16/Feb/24 17:22:13][took 0.035004 secs] +[<<][56cde74cd152e301406534][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:28][16/Feb/24 17:24:28][took 0.076008 secs] +[>>][56cde74ce45e6782634338][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:28] +[<<][56cde74ce45e6782634338][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:28][16/Feb/24 17:24:28][took 0.006 secs] +[<<][56cde74d076c7853155178][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:29][16/Feb/24 17:24:29][took 0.09601 secs] +[>>][56cde74d1f1b9058363059][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:29] +[<<][56cde74d1f1b9058363059][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:29][16/Feb/24 17:24:29][took 0.024002 secs] +[<<][56cde74d0ad79705137437][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:29][16/Feb/24 17:24:29][took 0.132013 secs] +[>>][56cde74d2b8f6466058679][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:29] +[<<][56cde74d2b8f6466058679][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:29][16/Feb/24 17:24:29][took 0.063006 secs] +[<<][56cde74f482d2342471663][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.073007 secs] +[>>][56cde74f5a001267863626][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:24:31] +[<<][56cde74f5a001267863626][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.007001 secs] +[<<][56cde74f6961f531079690][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.088009 secs] +[>>][56cde74f7f1d0061932504][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:24:31] +[<<][56cde74f7f1d0061932504][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.045005 secs] +[<<][56cde74f6ad90855783458][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.164017 secs] +[>>][56cde74f93611738515132][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:24:31] +[<<][56cde74f93611738515132][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:24:31][16/Feb/24 17:24:31][took 0.011001 secs] +[<<][56cde74fde94f071772891][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:31][16/Feb/24 17:24:32][took 0.102011 secs] +[>>][56cde75003972893133470][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32] +[<<][56cde75003972893133470][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.013001 secs] +[<<][56cde75010497275594575][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.082008 secs] +[>>][56cde750248d7812224458][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32] +[<<][56cde750248d7812224458][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.009001 secs] +[<<][56cde750903ab747714967][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.071007 secs] +[>>][56cde750a1cf3403474000][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:32] +[<<][56cde750a1cf3403474000][DEFAULT][/new_pull/index.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.006 secs] +[<<][56cde750bb725539429019][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.078008 secs] +[>>][56cde750cefad456304639][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:32] +[<<][56cde750cefad456304639][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.029003 secs] +[<<][56cde750bb725295971424][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.139014 secs] +[>>][56cde750dda13595229382][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:32] +[<<][56cde750dda13595229382][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:24:32][16/Feb/24 17:24:32][took 0.033003 secs] +[<<][56cde7522da2b997983019][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:34][16/Feb/24 17:24:34][took 0.075007 secs] +[>>][56cde75240313310402440][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:34] + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde75240313310402440][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:34][16/Feb/24 17:24:34][took 0.036003 secs] +[<<][56cde7552623c969780239][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:24:37][16/Feb/24 17:24:37][took 0.076008 secs] +[>>][56cde755392f4324709703][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:24:37] + [16/Feb/24 17:24:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde755392f4324709703][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:24:37][16/Feb/24 17:24:37][took 0.029003 secs] +[<<][56cde758a1072943582118][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:40][16/Feb/24 17:24:40][took 0.071007 secs] +[>>][56cde758b29b9598662287][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:40] + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:24:40][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:24:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde758b29b9598662287][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:24:40][16/Feb/24 17:24:40][took 0.041005 secs] +[<<][56cde79499756118043673][DEFAULT][/new_pull/index.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.064006 secs] +[>>][56cde794a9545605839077][DEFAULT][/new_pull/index.php][16/Feb/24 17:25:40] +[<<][56cde794a9545605839077][DEFAULT][/new_pull/index.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.005001 secs] +[<<][56cde794c2f77788000381][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.077008 secs] +[>>][56cde794d5c47030275247][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:25:40] +[<<][56cde794d5c47030275247][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.023002 secs] +[<<][56cde794c52a0408970196][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.116012 secs] +[>>][56cde794e17cc889038997][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:25:40] +[<<][56cde794e17cc889038997][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:25:40][16/Feb/24 17:25:40][took 0.037004 secs] +[<<][56cde79a90d0b480295332][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:25:46][16/Feb/24 17:25:46][took 0.071007 secs] +[>>][56cde79aa226a031751275][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:25:46] + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:25:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde79aa226a031751275][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:25:46][16/Feb/24 17:25:46][took 0.036004 secs] +[<<][56cde7b3a33fe570132313][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:26:11][16/Feb/24 17:26:11][took 0.069007 secs] +[>>][56cde7b3b4575224878347][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:26:11] + [16/Feb/24 17:26:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde7b3b4575224878347][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:26:11][16/Feb/24 17:26:11][took 0.029003 secs] +[<<][56cde7bc1cb0b143082920][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:26:20][16/Feb/24 17:26:20][took 0.073007 secs] +[>>][56cde7bc2f00a165549861][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:26:20] + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:26:20][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:26:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde7bc2f00a165549861][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:26:20][16/Feb/24 17:26:20][took 0.043005 secs] +[<<][56cde7f29cbaf392692562][DEFAULT][/new_pull/index.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.067007 secs] +[>>][56cde7f2ad556977137517][DEFAULT][/new_pull/index.php][16/Feb/24 17:27:14] +[<<][56cde7f2ad556977137517][DEFAULT][/new_pull/index.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.006 secs] +[<<][56cde7f2c2936930238073][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.076008 secs] +[>>][56cde7f2d521e122297312][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:27:14] +[<<][56cde7f2d521e122297312][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.025002 secs] +[<<][56cde7f2c3cbf961733246][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.122012 secs] +[>>][56cde7f2e1d43946705748][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:27:14] +[<<][56cde7f2e1d43946705748][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:27:14][16/Feb/24 17:27:14][took 0.061006 secs] +[<<][56cde7f4d7227717975550][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:16][16/Feb/24 17:27:16][took 0.085008 secs] +[>>][56cde7f4ec21f169309368][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:16] + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:27:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:27:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde7f4ec21f169309368][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:16][16/Feb/24 17:27:17][took 0.035004 secs] +[<<][56cde7f6d9618104833735][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:27:18][16/Feb/24 17:27:18][took 0.075007 secs] +[>>][56cde7f6ebeff890841965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:27:18] + [16/Feb/24 17:27:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde7f6ebeff890841965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:27:18][16/Feb/24 17:27:18][took 0.029003 secs] +[<<][56cde7fa463f3996788260][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:22][16/Feb/24 17:27:22][took 0.068007 secs] +[>>][56cde7fa56d9a116740367][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:22] + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:27:22][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:27:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde7fa56d9a116740367][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:27:22][16/Feb/24 17:27:22][took 0.061006 secs] +[<<][56cde94620f01173716668][DEFAULT][/new_pull/index.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.071007 secs] +[>>][56cde94632848082801498][DEFAULT][/new_pull/index.php][16/Feb/24 17:32:54] +[<<][56cde94632848082801498][DEFAULT][/new_pull/index.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.007001 secs] +[<<][56cde94649781592597573][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.083009 secs] +[>>][56cde9465e392124441568][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:32:54] +[<<][56cde9465e392124441568][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.026002 secs] +[<<][56cde9464ab0a244910058][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.132013 secs] +[>>][56cde9466b29f875500896][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:32:54] +[<<][56cde9466b29f875500896][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:32:54][16/Feb/24 17:32:54][took 0.060006 secs] +[<<][56cde948ac67a756923351][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:32:56][16/Feb/24 17:32:56][took 0.080008 secs] +[>>][56cde948c02ea589960731][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:32:56] + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:32:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde948c02ea589960731][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:32:56][16/Feb/24 17:32:56][took 0.039004 secs] +[<<][56cde94a68d1e686221846][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:32:58][16/Feb/24 17:32:58][took 0.074008 secs] +[>>][56cde94a7b21e197099425][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:32:58] + [16/Feb/24 17:32:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cde94a7b21e197099425][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:32:58][16/Feb/24 17:32:58][took 0.031003 secs] +[<<][56cde94da998d458922383][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:33:01][16/Feb/24 17:33:01][took 0.080008 secs] +[>>][56cde94dbd5fd146550926][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:33:01] + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:33:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cde94dbd5fd146550926][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:33:01][16/Feb/24 17:33:01][took 0.054005 secs] +[<<][56cdeacbb26f4301283062][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:23][16/Feb/24 17:39:23][took 0.086008 secs] +[>>][56cdeacbc7ebd082586712][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:23] +[<<][56cdeacbc7ebd082586712][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:23][16/Feb/24 17:39:23][took 0.006001 secs] +[<<][56cdeacbe1508346602734][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:23][16/Feb/24 17:39:23][took 0.075007 secs] +[>>][56cdeacbf3def304373288][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:23] +[<<][56cdeacbf3def304373288][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:23][16/Feb/24 17:39:24][took 0.024003 secs] +[<<][56cdeacbe2890291928311][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:23][16/Feb/24 17:39:24][took 0.119012 secs] +[>>][56cdeacc0bf04278642218][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:24] +[<<][56cdeacc0bf04278642218][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:24][16/Feb/24 17:39:24][took 0.053006 secs] +[<<][56cdeacdb181c136191383][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:39:25][16/Feb/24 17:39:25][took 0.074007 secs] +[>>][56cdeacdc3933345679294][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:39:25] +[<<][56cdeacdc3933345679294][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/24 17:39:25][16/Feb/24 17:39:25][took 0.007001 secs] +[<<][56cdeacdd2b6a493231590][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:39:25][16/Feb/24 17:39:25][took 0.086008 secs] +[>>][56cdeacde8332563304059][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:39:25] +[<<][56cdeacde8332563304059][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/24 17:39:25][16/Feb/24 17:39:25][took 0.038004 secs] +[<<][56cdeacdd3b0a942828807][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:39:25][16/Feb/24 17:39:26][took 0.155016 secs] +[>>][56cdeace05a3a270961053][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:39:26] +[<<][56cdeace05a3a270961053][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/24 17:39:26][16/Feb/24 17:39:26][took 0.012001 secs] +[<<][56cdeace55f83855565992][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26][16/Feb/24 17:39:26][took 0.09901 secs] +[>>][56cdeace6ea15763948522][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26] +[<<][56cdeace6ea15763948522][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26][16/Feb/24 17:39:26][took 0.010001 secs] +[<<][56cdeace7b53a677630006][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26][16/Feb/24 17:39:26][took 0.074007 secs] +[>>][56cdeace8d651220180983][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26] +[<<][56cdeace8d651220180983][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/24 17:39:26][16/Feb/24 17:39:26][took 0.0070009999999999 secs] +[<<][56cdeacfdcc5e449561396][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 17:39:27][16/Feb/24 17:39:27][took 0.074007 secs] +[>>][56cdeacfef15d938080901][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 17:39:27] +[<<][56cdeacfef15d938080901][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/24 17:39:27][16/Feb/24 17:39:28][took 0.081008 secs] +[<<][56cdead253dea076324025][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 17:39:30][16/Feb/24 17:39:30][took 0.078008 secs] +[>>][56cdead26728a117311763][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 17:39:30] +[<<][56cdead26728a117311763][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/24 17:39:30][16/Feb/24 17:39:30][took 0.048004 secs] +[<<][56cdead41a8a2741872349][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.074008 secs] +[>>][56cdead42cda2109577669][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:32] +[<<][56cdead42cda2109577669][DEFAULT][/new_pull/index.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.006 secs] +[<<][56cdead446004883489034][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.087009 secs] +[>>][56cdead45b7cd947439215][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:32] +[<<][56cdead45b7cd947439215][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.023002 secs] +[<<][56cdead448715263430495][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.121012 secs] +[>>][56cdead467352862041801][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:32] +[<<][56cdead467352862041801][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:39:32][16/Feb/24 17:39:32][took 0.038003 secs] +[<<][56cdead694ea4626059311][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:34][16/Feb/24 17:39:34][took 0.076008 secs] +[>>][56cdead6a7b74588725640][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:34] + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:39:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdead6a7b74588725640][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:34][16/Feb/24 17:39:34][took 0.035004 secs] +[<<][56cdead87b53a566991311][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:39:36][16/Feb/24 17:39:36][took 0.073007 secs] +[>>][56cdead88d651418187352][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:39:36] + [16/Feb/24 17:39:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdead88d651418187352][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:39:36][16/Feb/24 17:39:36][took 0.026003 secs] +[<<][56cdeadab1178948854971][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:38][16/Feb/24 17:39:38][took 0.072007 secs] +[>>][56cdeadac2abf744923906][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:38] + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +array_push() expects parameter 1 to be array, null given - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:39:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdeadac2abf744923906][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:39:38][16/Feb/24 17:39:38][took 0.047005 secs] +[<<][56cdebab9a9a8289705493][DEFAULT][/new_pull/index.php][16/Feb/24 17:43:07][16/Feb/24 17:43:07][took 0.09101 secs] +[>>][56cdebabb1112933920076][DEFAULT][/new_pull/index.php][16/Feb/24 17:43:07] +[<<][56cdebabb1112933920076][DEFAULT][/new_pull/index.php][16/Feb/24 17:43:07][16/Feb/24 17:43:07][took 0.008 secs] +[<<][56cdebabc9f8c777242817][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:43:07][16/Feb/24 17:43:07][took 0.071007 secs] +[>>][56cdebabdbcbb632906935][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:43:07] +[<<][56cdebabdbcbb632906935][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:43:07][16/Feb/24 17:43:07][took 0.025003 secs] +[<<][56cdebabcbae5301676387][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:43:07][16/Feb/24 17:43:07][took 0.117011 secs] +[>>][56cdebabe8bc8322720079][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:43:07] +[<<][56cdebabe8bc8322720079][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:43:07][16/Feb/24 17:43:08][took 0.060006 secs] +[<<][56cdebad92d6d009246129][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:09][16/Feb/24 17:43:09][took 0.082008 secs] +[>>][56cdebada71ae412381459][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:09] + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:43:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdebada71ae412381459][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:09][16/Feb/24 17:43:09][took 0.039003 secs] +[<<][56cdebaf624c9091880134][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:43:11][16/Feb/24 17:43:11][took 0.076008 secs] +[>>][56cdebaf74db1943496300][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:43:11] + [16/Feb/24 17:43:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdebaf74db1943496300][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:43:11][16/Feb/24 17:43:11][took 0.030003 secs] +[<<][56cdebb381a66527417615][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:15][16/Feb/24 17:43:15][took 0.073007 secs] +[>>][56cdebb393795713505477][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:15] + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strcmp() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 3990 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Array to string conversion - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 3991 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:43:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdebb393795713505477][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:43:15][16/Feb/24 17:43:15][took 0.043005 secs] +[<<][56cded2d24d14050117934][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.072008 secs] +[>>][56cded2d36e2c468963219][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:33] +[<<][56cded2d36e2c468963219][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.007 secs] +[<<][56cded2d4d97d896625084][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.081008 secs] +[>>][56cded2d615ed421221875][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:33] +[<<][56cded2d615ed421221875][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.027003 secs] +[<<][56cded2d4f8be609371502][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.134013 secs] +[>>][56cded2d70823855511446][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:33] +[<<][56cded2d70823855511446][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:33][16/Feb/24 17:49:33][took 0.063007 secs] +[<<][56cded307ad64605897965][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:49:36][16/Feb/24 17:49:36][took 0.066006 secs] +[>>][56cded308b70a799596590][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:49:36] + [16/Feb/24 17:49:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 17:49:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cded308b70a799596590][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:49:36][16/Feb/24 17:49:36][took 0.036004 secs] +[<<][56cded323aea1541244608][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.067007 secs] +[>>][56cded324b848242745547][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:38] +[<<][56cded324b848242745547][DEFAULT][/new_pull/index.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.005001 secs] +[<<][56cded32613f9720415714][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.088009 secs] +[>>][56cded3277392807105343][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:38] +[<<][56cded3277392807105343][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.022002 secs] +[<<][56cded3262b6a961784281][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.129013 secs] +[>>][56cded3282b2f562143333][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:38] +[<<][56cded3282b2f562143333][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:49:38][16/Feb/24 17:49:38][took 0.040004 secs] +[<<][56cded33c2f05227369908][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:39][16/Feb/24 17:49:39][took 0.076008 secs] +[>>][56cded33d57ed538895104][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:39] + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 88 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:49:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 40 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cded33d57ed538895104][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:39][16/Feb/24 17:49:39][took 0.038004 secs] +[<<][56cded35a08f7535327743][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:49:41][16/Feb/24 17:49:41][took 0.077008 secs] +[>>][56cded35b39af794154734][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:49:41] + [16/Feb/24 17:49:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cded35b39af794154734][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:49:41][16/Feb/24 17:49:41][took 0.041004 secs] +[<<][56cded392172b590225473][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:45][16/Feb/24 17:49:45][took 0.078008 secs] +[>>][56cded3934bcb052673560][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:45] + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 77 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:49:45][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 62 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 43 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:49:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 43 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cded3934bcb052673560][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:49:45][16/Feb/24 17:49:45][took 0.048005 secs] +[<<][56cded759cfed203685476][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:45][16/Feb/24 17:50:45][took 0.063006 secs] +[>>][56cded75ac60b654066042][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:45] +[<<][56cded75ac60b654066042][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:45][16/Feb/24 17:50:45][took 0.010001 secs] +[<<][56cded75c6bf6583253847][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:45][16/Feb/24 17:50:45][took 0.076008 secs] +[>>][56cded75d98c6502499033][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:45] +[<<][56cded75d98c6502499033][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:45][16/Feb/24 17:50:45][took 0.033003 secs] +[<<][56cded75c6426518835970][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:45][16/Feb/24 17:50:45][took 0.144014 secs] +[>>][56cded75e9e84447396956][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:45] +[<<][56cded75e9e84447396956][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:45][16/Feb/24 17:50:46][took 0.055006 secs] +[<<][56cded7999acb209347792][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:50:49][16/Feb/24 17:50:49][took 0.086009 secs] +[>>][56cded79aeeac846468309][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:50:49] + [16/Feb/24 17:50:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/24 17:50:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cded79aeeac846468309][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/24 17:50:49][16/Feb/24 17:50:49][took 0.041004 secs] +[<<][56cded7be7db3830665076][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:51][16/Feb/24 17:50:52][took 0.072007 secs] +[>>][56cded7c05c8b563233131][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:52] +[<<][56cded7c05c8b563233131][DEFAULT][/new_pull/index.php][16/Feb/24 17:50:52][16/Feb/24 17:50:52][took 0.006 secs] +[<<][56cded7c1c3f4272611678][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:52][16/Feb/24 17:50:52][took 0.079008 secs] +[>>][56cded7c2fc7c835557442][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:52] +[<<][56cded7c2fc7c835557442][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:50:52][16/Feb/24 17:50:52][took 0.026003 secs] +[<<][56cded7c20276844314093][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:52][16/Feb/24 17:50:52][took 0.114011 secs] +[>>][56cded7c3c3b9865016876][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:52] +[<<][56cded7c3c3b9865016876][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:50:52][16/Feb/24 17:50:52][took 0.039004 secs] +[<<][56cded7d7043a212242556][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:53][16/Feb/24 17:50:53][took 0.073008 secs] +[>>][56cded7d8216a718849929][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:53] + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 43 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:50:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 43 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cded7d8216a718849929][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:53][16/Feb/24 17:50:53][took 0.038004 secs] +[<<][56cded7f4b71b242290026][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:50:55][16/Feb/24 17:50:55][took 0.075008 secs] +[>>][56cded7f5e003108492484][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:50:55] + [16/Feb/24 17:50:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cded7f5e003108492484][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:50:55][16/Feb/24 17:50:55][took 0.029003 secs] +[<<][56cded822e763900635150][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:58][16/Feb/24 17:50:58][took 0.075007 secs] +[>>][56cded8241433571560791][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:58] + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:50:58][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:50:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cded8241433571560791][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:50:58][16/Feb/24 17:50:58][took 0.045005 secs] +[<<][56cdedb8d93b1634366390][DEFAULT][/new_pull/index.php][16/Feb/24 17:51:52][16/Feb/24 17:51:52][took 0.077008 secs] +[>>][56cdedb8ec851115230318][DEFAULT][/new_pull/index.php][16/Feb/24 17:51:52] +[<<][56cdedb8ec851115230318][DEFAULT][/new_pull/index.php][16/Feb/24 17:51:52][16/Feb/24 17:51:52][took 0.006 secs] +[<<][56cdedb9110a3406448517][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:51:53][16/Feb/24 17:51:53][took 0.075007 secs] +[>>][56cdedb9235a2904314710][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:51:53] +[<<][56cdedb9235a2904314710][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:51:53][16/Feb/24 17:51:53][took 0.023003 secs] +[<<][56cdedb9110a3969445597][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:51:53][16/Feb/24 17:51:53][took 0.123012 secs] +[>>][56cdedb92f127323627661][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:51:53] +[<<][56cdedb92f127323627661][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:51:53][16/Feb/24 17:51:53][took 0.054006 secs] +[<<][56cdedbb2ee07497911199][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:51:55][16/Feb/24 17:51:55][took 0.078008 secs] +[>>][56cdedbb422a7793517580][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:51:55] + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 89 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:51:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdedbb422a7793517580][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:51:55][16/Feb/24 17:51:55][took 0.035004 secs] +[<<][56cdedbd8fdbf105180242][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:51:57][16/Feb/24 17:51:57][took 0.077007 secs] +[>>][56cdedbda2e77181798504][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:51:57] + [16/Feb/24 17:51:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdedbda2e77181798504][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:51:57][16/Feb/24 17:51:57][took 0.031003 secs] +[<<][56cdedc0df493140708953][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:52:00][16/Feb/24 17:52:00][took 0.072008 secs] +[>>][56cdedc0f15ab742352206][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:52:00] + [16/Feb/24 17:52:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 78 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 23 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:52:01][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 63 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:52:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdedc0f15ab742352206][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:52:00][16/Feb/24 17:52:01][took 0.049005 secs] +[<<][56cdee34f0861337836035][DEFAULT][/new_pull/index.php][16/Feb/24 17:53:56][16/Feb/24 17:53:57][took 0.066007 secs] +[>>][56cdee350c7f8665250657][DEFAULT][/new_pull/index.php][16/Feb/24 17:53:57] +[<<][56cdee350c7f8665250657][DEFAULT][/new_pull/index.php][16/Feb/24 17:53:57][16/Feb/24 17:53:57][took 0.006 secs] +[<<][56cdee3521fc1782850853][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:53:57][16/Feb/24 17:53:57][took 0.094009 secs] +[>>][56cdee3538efa479068093][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:53:57] +[<<][56cdee3538efa479068093][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:53:57][16/Feb/24 17:53:57][took 0.029003 secs] +[<<][56cdee3523f01188214842][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:53:57][16/Feb/24 17:53:57][took 0.156016 secs] +[>>][56cdee354a071706272617][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:53:57] +[<<][56cdee354a071706272617][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:53:57][16/Feb/24 17:53:57][took 0.073008 secs] +[<<][56cdee370ff71790734711][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:53:59][16/Feb/24 17:53:59][took 0.081008 secs] +[>>][56cdee3723fc9336572753][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:53:59] + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 82 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 93 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 67 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:53:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdee3723fc9336572753][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:53:59][16/Feb/24 17:53:59][took 0.042005 secs] +[<<][56cdee393ee4c479114790][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:54:01][16/Feb/24 17:54:01][took 0.074008 secs] +[>>][56cdee3950f64805754375][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:54:01] + [16/Feb/24 17:54:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdee3950f64805754375][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:54:01][16/Feb/24 17:54:01][took 0.030003 secs] +[<<][56cdee3bc4803050740966][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:03][16/Feb/24 17:54:03][took 0.076008 secs] +[>>][56cdee3bd74d3272137624][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:03] + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 82 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: val - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: val - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 24 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 26 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 26 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 26 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:54:03][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 67 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:54:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdee3bd74d3272137624][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:03][16/Feb/24 17:54:03][took 0.047005 secs] +[<<][56cdee70e2d9b420623852][DEFAULT][/new_pull/index.php][16/Feb/24 17:54:56][16/Feb/24 17:54:56][took 0.065007 secs] +[>>][56cdee70f2f72287652682][DEFAULT][/new_pull/index.php][16/Feb/24 17:54:56] +[<<][56cdee70f2f72287652682][DEFAULT][/new_pull/index.php][16/Feb/24 17:54:56][16/Feb/24 17:54:57][took 0.006 secs] +[<<][56cdee7113d2a925146322][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:54:57][16/Feb/24 17:54:57][took 0.086009 secs] +[>>][56cdee712910b311985859][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:54:57] +[<<][56cdee712910b311985859][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/24 17:54:57][16/Feb/24 17:54:57][took 0.031003 secs] +[<<][56cdee711549b687369217][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:54:57][16/Feb/24 17:54:57][took 0.140014 secs] +[>>][56cdee7137f59799635006][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:54:57] +[<<][56cdee7137f59799635006][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/24 17:54:57][16/Feb/24 17:54:57][took 0.057006 secs] +[<<][56cdee72a55ea100444257][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:58][16/Feb/24 17:54:58][took 0.080008 secs] +[>>][56cdee72b8e72134431357][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:58] + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:54:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdee72b8e72134431357][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:54:58][16/Feb/24 17:54:58][took 0.040004 secs] +[<<][56cdee746e3cb139766171][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:55:00][16/Feb/24 17:55:00][took 0.073007 secs] +[>>][56cdee74804e3933091011][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:55:00] + [16/Feb/24 17:55:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cdee74804e3933091011][DEFAULT][/notificationAssignmentCreate.php][16/Feb/24 17:55:00][16/Feb/24 17:55:00][took 0.029002 secs] +[<<][56cdee77621a2002588404][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:55:03][16/Feb/24 17:55:03][took 0.068007 secs] +[>>][56cdee7772b49423106154][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:55:03] + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: val - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: val - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 25 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 27 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 27 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 27 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/24 17:55:03][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/24 17:55:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cdee7772b49423106154][DEFAULT][/notificationAssignmentConfig.php][16/Feb/24 17:55:03][16/Feb/24 17:55:03][took 0.046005 secs] +[<<][56ceb82674d70814035470][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:34][16/Feb/25 08:15:34][took 0.246024 secs] +[<<][56ceb826c7db2820080214][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:34][16/Feb/25 08:15:34][took 0.09801 secs] +[>>][56ceb826dfc8c834772443][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:34] +[<<][56ceb826dfc8c834772443][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:34][16/Feb/25 08:15:35][took 0.083008 secs] +[<<][56ceb82e3ce09098946912][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.081008 secs] +[>>][56ceb82e51249217300143][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42] +[<<][56ceb82e51249217300143][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.030003 secs] +[>>][56ceb82e58b64333372834][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42] + [16/Feb/25 08:15:42][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56ceb82e58b64333372834][DEFAULT][/new_pull/login.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.059006 secs] +[<<][56ceb82e73537001387876][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.075008 secs] +[>>][56ceb82e85e1f283387345][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:42] +[<<][56ceb82e85e1f283387345][DEFAULT][/new_pull/index.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.012001 secs] +[<<][56ceb82e98aee464732027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.068007 secs] +[>>][56ceb82ea9495528536657][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:15:42] +[<<][56ceb82ea9495528536657][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.051005 secs] +[<<][56ceb82e9a647323274227][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.143014 secs] +[>>][56ceb82ebd8d5900670330][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:15:42] +[<<][56ceb82ebd8d5900670330][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:15:42][16/Feb/25 08:15:42][took 0.087009 secs] +[<<][56ceb85a77160672167853][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:26][16/Feb/25 08:16:26][took 0.087009 secs] +[>>][56ceb85a8c929539977439][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:26] + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 69 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:16:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 45 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceb85a8c929539977439][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:26][16/Feb/25 08:16:26][took 0.095009 secs] +[<<][56ceb85e75b80172943384][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:16:30][16/Feb/25 08:16:30][took 0.078007 secs] +[>>][56ceb85e89408715040061][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:16:30] + [16/Feb/25 08:16:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56ceb85e89408715040061][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:16:30][16/Feb/25 08:16:30][took 0.035003 secs] +[<<][56ceb861de0ce838055776][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:33][16/Feb/25 08:16:33][took 0.074008 secs] +[>>][56ceb861f05ce075447425][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:33] + [16/Feb/25 08:16:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:16:34][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 69 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:16:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceb861f05ce075447425][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:16:33][16/Feb/25 08:16:34][took 0.046004 secs] +[<<][56ceb90f24951383266990][DEFAULT][/new_pull/index.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.069007 secs] +[>>][56ceb90f35eb0158621071][DEFAULT][/new_pull/index.php][16/Feb/25 08:19:27] +[<<][56ceb90f35eb0158621071][DEFAULT][/new_pull/index.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.006 secs] +[<<][56ceb90f4646e884561227][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.076008 secs] +[>>][56ceb90f58d56225293911][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:19:27] +[<<][56ceb90f58d56225293911][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.028003 secs] +[<<][56ceb90f44cfe781339336][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.149015 secs] +[>>][56ceb90f696fd764296536][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:19:27] +[<<][56ceb90f696fd764296536][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:19:27][16/Feb/25 08:19:27][took 0.035003 secs] +[<<][56ceb911b04b2685696384][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:29][16/Feb/25 08:19:29][took 0.076007 secs] +[>>][56ceb911c3181866275662][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:29] + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 69 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:19:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceb911c3181866275662][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:29][16/Feb/25 08:19:29][took 0.038003 secs] +[<<][56ceb913bbd16104939689][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:19:31][16/Feb/25 08:19:31][took 0.081009 secs] +[>>][56ceb913cfd6f442758294][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:19:31] + [16/Feb/25 08:19:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56ceb913cfd6f442758294][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:19:31][16/Feb/25 08:19:31][took 0.029003 secs] +[<<][56ceb91754254602708167][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:35][16/Feb/25 08:19:35][took 0.067007 secs] +[>>][56ceb91764bfb486612725][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:35] + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:19:35][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4032 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 69 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4112 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:19:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceb91764bfb486612725][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:19:35][16/Feb/25 08:19:35][took 0.049005 secs] +[<<][56cebd19ab1dc930398949][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:36:41][16/Feb/25 08:36:41][took 0.072007 secs] +[>>][56cebd19bcb23892371759][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:36:41] + [16/Feb/25 08:36:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cebd19bcb23892371759][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:36:41][16/Feb/25 08:36:41][took 0.028003 secs] +[<<][56cebd439bc85719162106][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:37:23][16/Feb/25 08:37:23][took 0.076007 secs] +[>>][56cebd43aed3d414417142][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:37:23] + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:37:23][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 69 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4106 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:37:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cebd43aed3d414417142][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:37:23][16/Feb/25 08:37:23][took 0.041004 secs] +[<<][56cebda39edbe334312672][DEFAULT][/new_pull/index.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.073007 secs] +[>>][56cebda3b0ed5757365361][DEFAULT][/new_pull/index.php][16/Feb/25 08:38:59] +[<<][56cebda3b0ed5757365361][DEFAULT][/new_pull/index.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.0060009999999999 secs] +[<<][56cebda3c0cc4619983405][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.079008 secs] +[>>][56cebda3d454c770010274][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:38:59] +[<<][56cebda3d454c770010274][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.029003 secs] +[<<][56cebda3c04f3211639369][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.157016 secs] +[>>][56cebda3e6a4b718302400][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:38:59] +[<<][56cebda3e6a4b718302400][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:38:59][16/Feb/25 08:38:59][took 0.035004 secs] +[<<][56cebda59850b743817907][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:01][16/Feb/25 08:39:01][took 0.080008 secs] +[>>][56cebda5ac17b519066964][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:01] + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4106 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:39:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cebda5ac17b519066964][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:01][16/Feb/25 08:39:01][took 0.042004 secs] +[<<][56cebda7eb22d213071839][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:39:03][16/Feb/25 08:39:04][took 0.076008 secs] +[>>][56cebda8098d5327537853][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:39:04] + [16/Feb/25 08:39:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cebda8098d5327537853][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:39:04][16/Feb/25 08:39:04][took 0.029002 secs] +[<<][56cebdafc1944164079539][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:11][16/Feb/25 08:39:11][took 0.066006 secs] +[>>][56cebdafd1b1a876416940][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:11] + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:39:11][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4025 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4106 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:39:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cebdafd1b1a876416940][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:39:11][16/Feb/25 08:39:11][took 0.043005 secs] +[<<][56cec194ae5cd445552189][DEFAULT][/new_pull/index.php][16/Feb/25 08:55:48][16/Feb/25 08:55:48][took 0.070007 secs] +[>>][56cec194bff14377859003][DEFAULT][/new_pull/index.php][16/Feb/25 08:55:48] +[<<][56cec194bff14377859003][DEFAULT][/new_pull/index.php][16/Feb/25 08:55:48][16/Feb/25 08:55:48][took 0.007001 secs] +[<<][56cec194cf14a679482397][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:55:48][16/Feb/25 08:55:48][took 0.080008 secs] +[>>][56cec194e31a2479640244][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:55:48] +[<<][56cec194e31a2479640244][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:55:48][16/Feb/25 08:55:48][took 0.027003 secs] +[<<][56cec194cf14a853093278][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:55:48][16/Feb/25 08:55:48][took 0.137014 secs] +[>>][56cec194f0c68608946173][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:55:48] +[<<][56cec194f0c68608946173][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:55:48][16/Feb/25 08:55:49][took 0.044005 secs] +[<<][56cec196a2b10049943810][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:55:50][16/Feb/25 08:55:50][took 0.079008 secs] +[>>][56cec196b6398136060938][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:55:50] + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:55:50][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec196b6398136060938][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:55:50][16/Feb/25 08:55:50][took 0.042004 secs] +[<<][56cec1994f42a168763996][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:55:53][16/Feb/25 08:55:53][took 0.073007 secs] +[>>][56cec19961159377403445][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:55:53] + [16/Feb/25 08:55:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec19961159377403445][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:55:53][16/Feb/25 08:55:53][took 0.028003 secs] +[<<][56cec1a1141fa174687609][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:56:01][16/Feb/25 08:56:01][took 0.068006 secs] +[>>][56cec1a125371007992634][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:56:01] + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:56:01][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:56:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec1a125371007992634][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:56:01][16/Feb/25 08:56:01][took 0.051005 secs] +[<<][56cec203ba59d305112165][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:39][16/Feb/25 08:57:39][took 0.064006 secs] +[>>][56cec203ca38b086871102][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:39] +[<<][56cec203ca38b086871102][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:39][16/Feb/25 08:57:39][took 0.007001 secs] +[<<][56cec203dd05b853171726][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:39][16/Feb/25 08:57:39][took 0.077008 secs] +[>>][56cec203f0113782074006][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:39] +[<<][56cec203f0113782074006][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:39][16/Feb/25 08:57:40][took 0.035003 secs] +[<<][56cec203dc88b177388932][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:39][16/Feb/25 08:57:40][took 0.157015 secs] +[>>][56cec2040ef8a339467420][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:40] +[<<][56cec2040ef8a339467420][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:40][16/Feb/25 08:57:40][took 0.037003 secs] +[<<][56cec206760ed406951437][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.068006 secs] +[>>][56cec20686a93888329163][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 08:57:42] +[<<][56cec20686a93888329163][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.013001 secs] +[<<][56cec20697052735876959][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.072007 secs] +[>>][56cec206a8999301359803][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 08:57:42] +[<<][56cec206a8999301359803][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.106011 secs] +[<<][56cec20697052335704776][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.213021 secs] +[>>][56cec206cb458061498824][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 08:57:42] +[<<][56cec206cb458061498824][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 08:57:42][16/Feb/25 08:57:42][took 0.018001 secs] +[<<][56cec206f2950874773750][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:42][16/Feb/25 08:57:43][took 0.079008 secs] +[>>][56cec20712380591880109][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43] +[<<][56cec20712380591880109][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.019002 secs] +[<<][56cec20720616981918404][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.066006 secs] +[>>][56cec20730bd4878494525][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43] +[<<][56cec20730bd4878494525][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.010001 secs] +[<<][56cec207b4582879396529][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.073008 secs] +[>>][56cec207c6a82829380533][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:43] +[<<][56cec207c6a82829380533][DEFAULT][/new_pull/index.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.006 secs] +[<<][56cec207d7428558262395][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.09301 secs] +[>>][56cec207edf7a764958404][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:43] +[<<][56cec207edf7a764958404][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 08:57:43][16/Feb/25 08:57:43][took 0.025002 secs] +[<<][56cec207d9b39975685350][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:43][16/Feb/25 08:57:44][took 0.129013 secs] +[>>][56cec208054d6802271081][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:44] +[<<][56cec208054d6802271081][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 08:57:44][16/Feb/25 08:57:44][took 0.039004 secs] +[<<][56cec2094be3f119053709][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:45][16/Feb/25 08:57:45][took 0.079008 secs] +[>>][56cec2095f6c7963427546][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:45] + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:57:45][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec2095f6c7963427546][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:45][16/Feb/25 08:57:45][took 0.039004 secs] +[<<][56cec20b543db617776465][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:57:47][16/Feb/25 08:57:47][took 0.077008 secs] +[>>][56cec20b6787b324741872][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:57:47] + [16/Feb/25 08:57:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec20b6787b324741872][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 08:57:47][16/Feb/25 08:57:47][took 0.030003 secs] +[<<][56cec21026374338879716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:52][16/Feb/25 08:57:52][took 0.073007 secs] +[>>][56cec210380a3207334443][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:52] + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 08:57:52][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +strlen() expects parameter 1 to be string, array given - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4026 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 08:57:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec210380a3207334443][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 08:57:52][16/Feb/25 08:57:52][took 0.052005 secs] +[<<][56cec2ef8bdc7972440570][DEFAULT][/new_pull/index.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.066007 secs] +[>>][56cec2ef9bf9e288028768][DEFAULT][/new_pull/index.php][16/Feb/25 09:01:35] +[<<][56cec2ef9bf9e288028768][DEFAULT][/new_pull/index.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.006 secs] +[<<][56cec2efaadec031365934][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.069007 secs] +[>>][56cec2efbbf63271609728][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:01:35] +[<<][56cec2efbbf63271609728][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.024002 secs] +[<<][56cec2efaadec822349636][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.124012 secs] +[>>][56cec2efc9a29422786854][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:01:35] +[<<][56cec2efc9a29422786854][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:01:35][16/Feb/25 09:01:35][took 0.043004 secs] +[<<][56cec2f21b5fd628334712][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:01:38][16/Feb/25 09:01:38][took 0.079008 secs] +[>>][56cec2f22ee85130749486][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:01:38] + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:01:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 47 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec2f22ee85130749486][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:01:38][16/Feb/25 09:01:38][took 0.040004 secs] +[<<][56cec3397f9d6605127411][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.067 secs] +[>>][56cec33990376170353987][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:49] +[<<][56cec33990376170353987][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.006 secs] +[<<][56cec3399f1be867387383][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.073 secs] +[>>][56cec339b0ee6622042412][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:49] +[<<][56cec339b0ee6622042412][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.024 secs] +[<<][56cec3399f5a6488189522][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.136 secs] +[>>][56cec339c0cce376343319][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:49] +[<<][56cec339c0cce376343319][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:49][16/Feb/25 09:02:49][took 0.042 secs] +[<<][56cec33b5fa1e576427480][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:02:51][16/Feb/25 09:02:51][took 0.096 secs] +[>>][56cec33b77506128571000][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:02:51] + [16/Feb/25 09:02:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:02:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cec33b77506128571000][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:02:51][16/Feb/25 09:02:51][took 0.057 secs] +[<<][56cec33cb5536170887581][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:52][16/Feb/25 09:02:52][took 0.076 secs] +[>>][56cec33cc85e6246573871][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:52] +[<<][56cec33cc85e6246573871][DEFAULT][/new_pull/index.php][16/Feb/25 09:02:52][16/Feb/25 09:02:52][took 0.0059999999999999 secs] +[<<][56cec33cd6876465920807][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:52][16/Feb/25 09:02:52][took 0.083 secs] +[>>][56cec33ceb096747930253][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:52] +[<<][56cec33ceb096747930253][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:02:52][16/Feb/25 09:02:52][took 0.024 secs] +[<<][56cec33cd7fe6333947422][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:52][16/Feb/25 09:02:53][took 0.123 secs] +[>>][56cec33d025ee500231729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:53] +[<<][56cec33d025ee500231729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:02:53][16/Feb/25 09:02:53][took 0.041 secs] +[<<][56cec33de1456447602150][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:02:53][16/Feb/25 09:02:54][took 0.081 secs] +[>>][56cec33e01266657660348][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:02:54] + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:02:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec33e01266657660348][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:02:54][16/Feb/25 09:02:54][took 0.035 secs] +[<<][56cec342a3426857754222][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:02:58][16/Feb/25 09:02:58][took 0.086 secs] +[>>][56cec342b8be6155071415][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:02:58] + [16/Feb/25 09:02:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:02:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56cec342b8be6155071415][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:02:58][16/Feb/25 09:02:58][took 0.035 secs] +[<<][56cec34d2b246049333312][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:03:09][16/Feb/25 09:03:09][took 0.066 secs] +[>>][56cec34d3b7fe404966652][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:03:09] + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:03:09][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: key - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4027 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:03:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec34d3b7fe404966652][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:03:09][16/Feb/25 09:03:09][took 0.061 secs] +[<<][56cec3cf2d956599830401][DEFAULT][/new_pull/index.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.071 secs] +[>>][56cec3cf3f67e749972547][DEFAULT][/new_pull/index.php][16/Feb/25 09:05:19] +[<<][56cec3cf3f67e749972547][DEFAULT][/new_pull/index.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.006 secs] +[<<][56cec3cf513a6587389697][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.078 secs] +[>>][56cec3cf64c26767348450][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:05:19] +[<<][56cec3cf64c26767348450][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.031 secs] +[<<][56cec3cf507ee528668110][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.169 secs] +[>>][56cec3cf7a3e6552401806][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:05:19] +[<<][56cec3cf7a3e6552401806][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:05:19][16/Feb/25 09:05:19][took 0.03 secs] +[<<][56cec3da52efe561462376][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:30][16/Feb/25 09:05:30][took 0.068 secs] +[>>][56cec3da6406e890035574][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:30] + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:05:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec3da6406e890035574][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:30][16/Feb/25 09:05:30][took 0.034 secs] +[<<][56cec3dc7c70e955120315][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:05:32][16/Feb/25 09:05:32][took 0.085 secs] +[>>][56cec3dc91316916634598][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:05:32] + [16/Feb/25 09:05:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:05:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56cec3dc91316916634598][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:05:32][16/Feb/25 09:05:32][took 0.033 secs] +[<<][56cec3e3002c6772970468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:39][16/Feb/25 09:05:39][took 0.08 secs] +[>>][56cec3e313f2e652649525][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:39] + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:05:39][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:05:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec3e313f2e652649525][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:05:39][16/Feb/25 09:05:39][took 0.048 secs] +[<<][56cec4154f84e050373579][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:06:29][16/Feb/25 09:06:29][took 0.068 secs] +[>>][56cec415605d6971060030][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:06:29] + [16/Feb/25 09:06:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:06:29][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56cec415605d6971060030][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:06:29][16/Feb/25 09:06:29][took 0.031 secs] +[<<][56cec41f51f5e275898650][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:39][16/Feb/25 09:06:39][took 0.071 secs] +[>>][56cec41f634b6052529381][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:39] + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:06:39][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=0
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=0 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 16 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:06:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 16 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec41f634b6052529381][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:39][16/Feb/25 09:06:39][took 0.045 secs] +[<<][56cec42e34e86635378700][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:54][16/Feb/25 09:06:54][took 0.071 secs] +[>>][56cec42e463de082401589][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:54] + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:06:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec42e463de082401589][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:54][16/Feb/25 09:06:54][took 0.045 secs] +[<<][56cec42f899fe192743716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:55][16/Feb/25 09:06:55][took 0.076 secs] +[>>][56cec42f9c6c6139764651][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:55] + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:06:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec42f9c6c6139764651][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:06:55][16/Feb/25 09:06:55][took 0.035 secs] +[<<][56cec43111c06788280232][DEFAULT][/new_pull/index.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.067 secs] +[>>][56cec431221be137391805][DEFAULT][/new_pull/index.php][16/Feb/25 09:06:57] +[<<][56cec431221be137391805][DEFAULT][/new_pull/index.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.014 secs] +[<<][56cec43134e86132910726][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.091 secs] +[>>][56cec4314b9ce104408501][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:06:57] +[<<][56cec4314b9ce104408501][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.029 secs] +[<<][56cec4313526e860727468][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.153 secs] +[>>][56cec4315a816186331928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:06:57] +[<<][56cec4315a816186331928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:06:57][16/Feb/25 09:06:57][took 0.04 secs] +[<<][56cec4346ffd6328424491][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:00][16/Feb/25 09:07:00][took 0.073 secs] +[>>][56cec43481cfe844139841][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:00] + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec43481cfe844139841][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:00][16/Feb/25 09:07:00][took 0.043 secs] +[<<][56cec4377de7e351904430][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:07:03][16/Feb/25 09:07:03][took 0.081 secs] +[>>][56cec43791ece566480185][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:07:03] + [16/Feb/25 09:07:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:07:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56cec43791ece566480185][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:07:03][16/Feb/25 09:07:03][took 0.03 secs] +[<<][56cec43e57936515197359][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:10][16/Feb/25 09:07:10][took 0.067 secs] +[>>][56cec43e682d6450007267][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:10] + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:07:10][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:07:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec43e682d6450007267][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:07:10][16/Feb/25 09:07:10][took 0.04 secs] +[<<][56cec4eb7ea36931267924][DEFAULT][/new_pull/index.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.063 secs] +[>>][56cec4eb8e81e096910250][DEFAULT][/new_pull/index.php][16/Feb/25 09:10:03] +[<<][56cec4eb8e81e096910250][DEFAULT][/new_pull/index.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.006 secs] +[<<][56cec4eb9fd76441611109][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.082 secs] +[>>][56cec4ebb41ae185615928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:10:03] +[<<][56cec4ebb41ae185615928][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.031 secs] +[<<][56cec4eb9f5a6114491579][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.146 secs] +[>>][56cec4ebc37c6964990258][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:10:03] +[<<][56cec4ebc37c6964990258][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:10:03][16/Feb/25 09:10:03][took 0.044 secs] +[<<][56cec4edd1286042847899][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:05][16/Feb/25 09:10:05][took 0.076 secs] +[>>][56cec4ede3f4e809559480][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:05] + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4109 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:10:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec4ede3f4e809559480][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:05][16/Feb/25 09:10:05][took 0.043 secs] +[<<][56cec4f2e6a46768722939][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:10][16/Feb/25 09:10:11][took 0.075 secs] +[>>][56cec4f3054ce506193430][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:11] + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4087 + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4109 + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4126 + [16/Feb/25 09:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec4f3054ce506193430][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:11][16/Feb/25 09:10:11][took 0.037 secs] +[<<][56cec4f52315e365828385][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:10:13][16/Feb/25 09:10:13][took 0.077 secs] +[>>][56cec4f53620e068021117][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:10:13] + [16/Feb/25 09:10:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:10:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4175 +[<<][56cec4f53620e068021117][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:10:13][16/Feb/25 09:10:13][took 0.03 secs] +[<<][56cec4f954a56615610468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:17][16/Feb/25 09:10:17][took 0.074 secs] +[>>][56cec4f966b66819254376][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:17] + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4018 + [16/Feb/25 09:10:17][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1146 - Table 'testlink.req_notify_assignments' doesn't exist - DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1
THE MESSAGE : DELETE FROM req_notify_assignments WHERE test_project_id=1 AND field_id=1 +Query failed: errorcode[1146] + errormsg:Table 'testlink.req_notify_assignments' doesn't exist + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4109 + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:10:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec4f966b66819254376][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:10:17][16/Feb/25 09:10:17][took 0.041 secs] +[<<][56cec5451f2de752349606][DEFAULT][/new_pull/index.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.063 secs] +[>>][56cec5452ecde168835774][DEFAULT][/new_pull/index.php][16/Feb/25 09:11:33] +[<<][56cec5452ecde168835774][DEFAULT][/new_pull/index.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.006 secs] +[<<][56cec5453fe4e403609475][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.069 secs] +[>>][56cec54550bd6106950919][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:11:33] +[<<][56cec54550bd6106950919][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.029 secs] +[<<][56cec5453e2f6339613920][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.149 secs] +[>>][56cec545630ce386565868][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:11:33] +[<<][56cec545630ce386565868][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:11:33][16/Feb/25 09:11:33][took 0.03 secs] +[<<][56cec5471faae707979053][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:35][16/Feb/25 09:11:35][took 0.076 secs] +[>>][56cec5473238e302721047][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:35] + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4109 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:11:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5473238e302721047][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:35][16/Feb/25 09:11:35][took 0.048 secs] +[<<][56cec54a244e6968879119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:38][16/Feb/25 09:11:38][took 0.078 secs] +[>>][56cec54a3797e175692791][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:38] + [16/Feb/25 09:11:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec54a3797e175692791][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:38][16/Feb/25 09:11:38][took 0.029 secs] +[<<][56cec552cf346446531212][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:46][16/Feb/25 09:11:46][took 0.077 secs] +[>>][56cec552e27de472413803][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:46] + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4018 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4109 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:11:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec552e27de472413803][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:11:46][16/Feb/25 09:11:46][took 0.038 secs] +[<<][56cec557ecfd6403257409][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:51][16/Feb/25 09:11:52][took 0.072 secs] +[>>][56cec5580aabe709772507][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:52] + [16/Feb/25 09:11:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:11:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4175 +[<<][56cec5580aabe709772507][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:11:52][16/Feb/25 09:11:52][took 0.029 secs] +[<<][56cec5605cf26499342682][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:00][16/Feb/25 09:12:00][took 0.067 secs] +[>>][56cec5606d4de068615716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:00] + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4018 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 16 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 16 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5606d4de068615716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:00][16/Feb/25 09:12:00][took 0.037 secs] +[<<][56cec5720e16e787903324][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:18][16/Feb/25 09:12:18][took 0.075 secs] +[>>][56cec57220666854087253][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:18] + [16/Feb/25 09:12:18][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec57220666854087253][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:18][16/Feb/25 09:12:18][took 0.028 secs] +[<<][56cec5768a99e302151522][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:22][16/Feb/25 09:12:22][took 0.07 secs] +[>>][56cec5769bef6884413261][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:22] + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 15 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5769bef6884413261][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:22][16/Feb/25 09:12:22][took 0.041 secs] +[<<][56cec57b7bb56390698803][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:27][16/Feb/25 09:12:27][took 0.067 secs] +[>>][56cec57b8c4f6933042981][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:27] + [16/Feb/25 09:12:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec57b8c4f6933042981][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:27][16/Feb/25 09:12:27][took 0.028 secs] +[<<][56cec59129ebe406458927][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:49][16/Feb/25 09:12:49][took 0.066 secs] +[>>][56cec5913a476536989104][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:49] + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5913a476536989104][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:49][16/Feb/25 09:12:49][took 0.039 secs] +[<<][56cec595afb5e429847433][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:53][16/Feb/25 09:12:53][took 0.067 secs] +[>>][56cec595c0116340951119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:53] + [16/Feb/25 09:12:53][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec595c0116340951119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:12:53][16/Feb/25 09:12:53][took 0.027 secs] +[<<][56cec5988c8de396516218][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:56][16/Feb/25 09:12:56][took 0.067 secs] +[>>][56cec5989d27e989654477][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:56] + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:12:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5989d27e989654477][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:12:56][16/Feb/25 09:12:56][took 0.038 secs] +[<<][56cec59caa56e667317908][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:00][16/Feb/25 09:13:00][took 0.068 secs] +[>>][56cec59cbb2f6411114415][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:00] + [16/Feb/25 09:13:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec59cbb2f6411114415][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:00][16/Feb/25 09:13:00][took 0.027 secs] +[<<][56cec5a60b28e671912598][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:13:10][16/Feb/25 09:13:10][took 0.072 secs] +[>>][56cec5a61cfb6219137954][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:13:10] + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:13:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec5a61cfb6219137954][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:13:10][16/Feb/25 09:13:10][took 0.037 secs] +[<<][56cec5ad847f6369170280][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:17][16/Feb/25 09:13:17][took 0.075 secs] +[>>][56cec5ad96cee725820164][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:17] + [16/Feb/25 09:13:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec5ad96cee725820164][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:13:17][16/Feb/25 09:13:17][took 0.029 secs] +[<<][56cec7666118e397360732][DEFAULT][/new_pull/index.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.064 secs] +[>>][56cec76670b8e186585234][DEFAULT][/new_pull/index.php][16/Feb/25 09:20:38] +[<<][56cec76670b8e186585234][DEFAULT][/new_pull/index.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.011 secs] +[<<][56cec766820e6012420355][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.083 secs] +[>>][56cec7669651e842294527][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:20:38] +[<<][56cec7669651e842294527][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.03 secs] +[<<][56cec766847f6440576576][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.144 secs] +[>>][56cec766a8246482685384][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:20:38] +[<<][56cec766a8246482685384][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:20:38][16/Feb/25 09:20:38][took 0.043 secs] +[<<][56cec768d2dde031847195][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:40][16/Feb/25 09:20:40][took 0.078 secs] +[>>][56cec768e6276685475980][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:40] + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:20:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 13 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec768e6276685475980][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:40][16/Feb/25 09:20:40][took 0.049 secs] +[<<][56cec76ba99b6130854020][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:43][16/Feb/25 09:20:43][took 0.082 secs] +[>>][56cec76bbda06023616523][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:43] + [16/Feb/25 09:20:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec76bbda06023616523][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:43][16/Feb/25 09:20:43][took 0.163 secs] +[<<][56cec77652346884748330][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:54][16/Feb/25 09:20:54][took 0.079 secs] +[>>][56cec77665bc6301352251][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:54] + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:20:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec77665bc6301352251][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:20:54][16/Feb/25 09:20:54][took 0.047 secs] +[<<][56cec779e8986870985918][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:57][16/Feb/25 09:20:58][took 0.076 secs] +[>>][56cec77a07026411228965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:58] + [16/Feb/25 09:20:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec77a07026411228965][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:20:58][16/Feb/25 09:20:58][took 0.027 secs] +[<<][56cec7a36483e038301605][DEFAULT][/new_pull/index.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.057 secs] +[>>][56cec7a372eb6164916821][DEFAULT][/new_pull/index.php][16/Feb/25 09:21:39] +[<<][56cec7a372eb6164916821][DEFAULT][/new_pull/index.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.005 secs] +[<<][56cec7a3820e6860585397][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.07 secs] +[>>][56cec7a39363e990216866][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:21:39] +[<<][56cec7a39363e990216866][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.022 secs] +[<<][56cec7a384026919224718][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.129 secs] +[>>][56cec7a3a3bf6867924222][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:21:39] +[<<][56cec7a3a3bf6867924222][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:21:39][16/Feb/25 09:21:39][took 0.045 secs] +[<<][56cec7a602dbe547828040][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:42][16/Feb/25 09:21:42][took 0.1 secs] +[>>][56cec7a61b846717142241][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:42] + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:21:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 12 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec7a61b846717142241][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:42][16/Feb/25 09:21:42][took 0.039 secs] +[<<][56cec7a855226445016913][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:21:44][16/Feb/25 09:21:44][took 0.079 secs] +[>>][56cec7a868aa6484914389][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:21:44] + [16/Feb/25 09:21:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cec7a868aa6484914389][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:21:44][16/Feb/25 09:21:44][took 0.079 secs] +[<<][56cec7b0d64ed410309487][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:52][16/Feb/25 09:21:52][took 0.071007 secs] +[>>][56cec7b0e7e34300645388][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:52] + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:21:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec7b0e7e34300645388][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:52][16/Feb/25 09:21:52][took 0.041004 secs] +[<<][56cec7b41295d993426507][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:56][16/Feb/25 09:21:56][took 0.077007 secs] +[>>][56cec7b425a15405043362][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:56] + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:21:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec7b425a15405043362][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:56][16/Feb/25 09:21:56][took 0.036003 secs] +[<<][56cec7b52a0ca968094917][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:57][16/Feb/25 09:21:57][took 0.072008 secs] +[>>][56cec7b53ba12909152573][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:57] + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:21:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56cec7b53ba12909152573][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:21:57][16/Feb/25 09:21:57][took 0.036003 secs] +[<<][56cec8d11f28b556621236][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:26:41][16/Feb/25 09:26:41][took 0.088009 secs] +[>>][56cec8d134e3c459452153][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:26:41] + [16/Feb/25 09:26:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:26:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56cec8d134e3c459452153][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:26:41][16/Feb/25 09:26:41][took 0.032003 secs] +[<<][56cec8d798a7d796381258][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:26:47][16/Feb/25 09:26:47][took 0.088009 secs] +[>>][56cec8d7aea16335329991][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:26:47] + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:26:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec8d7aea16335329991][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:26:47][16/Feb/25 09:26:47][took 0.040004 secs] +[<<][56cec8dd429c9937050532][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.073008 secs] +[>>][56cec8dd54ae1745589270][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:53] +[<<][56cec8dd54ae1745589270][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.007001 secs] +[<<][56cec8dd677b1330165151][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.080008 secs] +[>>][56cec8dd7b421879992887][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:53] +[<<][56cec8dd7b421879992887][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.030003 secs] +[<<][56cec8dd677b1378623901][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.134013 secs] +[>>][56cec8dd8832e603211005][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:53] +[<<][56cec8dd8832e603211005][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:53][16/Feb/25 09:26:53][took 0.033003 secs] +[<<][56cec8df92bf2918399227][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.075008 secs] +[>>][56cec8dfa54da899230263][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:26:55] +[<<][56cec8dfa54da899230263][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.007001 secs] +[<<][56cec8dfb1c17563053032][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.082008 secs] +[>>][56cec8dfc5c6f572485274][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:26:55] +[<<][56cec8dfc5c6f572485274][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.039004 secs] +[<<][56cec8dfb1c17675503475][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.152015 secs] +[>>][56cec8dfd71ce644508188][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:26:55] +[<<][56cec8dfd71ce644508188][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:26:55][16/Feb/25 09:26:55][took 0.011001 secs] +[<<][56cec8e016fac868728457][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56][16/Feb/25 09:26:56][took 0.066006 secs] +[>>][56cec8e02756a453313672][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56] +[<<][56cec8e02756a453313672][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56][16/Feb/25 09:26:56][took 0.010001 secs] +[<<][56cec8e043e7e698506489][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56][16/Feb/25 09:26:56][took 0.067007 secs] +[>>][56cec8e054825745989463][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56] +[<<][56cec8e054825745989463][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:26:56][16/Feb/25 09:26:56][took 0.009001 secs] +[<<][56cec8e37452e893535626][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.078008 secs] +[>>][56cec8e3879ce200044178][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:59] +[<<][56cec8e3879ce200044178][DEFAULT][/new_pull/index.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.006 secs] +[<<][56cec8e397ba4869313218][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.079008 secs] +[>>][56cec8e3ab42c078165460][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:59] +[<<][56cec8e3ab42c078165460][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.025003 secs] +[<<][56cec8e39b63e910027729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.110011 secs] +[>>][56cec8e3b6bc9767321048][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:59] +[<<][56cec8e3b6bc9767321048][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:26:59][16/Feb/25 09:26:59][took 0.038004 secs] +[<<][56cec8e57420e912183868][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:01][16/Feb/25 09:27:01][took 0.068006 secs] +[>>][56cec8e584bb4535228266][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:01] +[<<][56cec8e584bb4535228266][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:01][16/Feb/25 09:27:01][took 0.130013 secs] +[<<][56cec8ee889d2214453329][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.070007 secs] +[>>][56cec8ee99b49504657143][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:10] +[<<][56cec8ee99b49504657143][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.0050009999999999 secs] +[<<][56cec8eea85af675364464][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.071007 secs] +[>>][56cec8eeb9b0e842279406][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:10] +[<<][56cec8eeb9b0e842279406][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.023002 secs] +[<<][56cec8eeaa108648285615][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.10801 secs] +[>>][56cec8eec4adb472998340][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:10] +[<<][56cec8eec4adb472998340][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:10][16/Feb/25 09:27:10][took 0.039003 secs] +[<<][56cec8f263d7b279473454][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 09:27:14][16/Feb/25 09:27:14][took 0.059006 secs] +[>>][56cec8f2727e1704836249][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 09:27:14] +[<<][56cec8f2727e1704836249][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 09:27:14][16/Feb/25 09:27:14][took 0.051005 secs] +[<<][56cec8f9ad435849180655][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:21][16/Feb/25 09:27:21][took 0.071007 secs] +[>>][56cec8f9bed7c863797258][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:21] +[<<][56cec8f9bed7c863797258][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:21][16/Feb/25 09:27:21][took 0.0070009999999999 secs] +[<<][56cec8f9ccc2a309472686][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:21][16/Feb/25 09:27:21][took 0.071007 secs] +[>>][56cec8f9de571287716589][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:21] +[<<][56cec8f9de571287716589][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:21][16/Feb/25 09:27:21][took 0.033003 secs] +[<<][56cec8f9ceb6b404408548][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:21][16/Feb/25 09:27:21][took 0.124012 secs] +[>>][56cec8f9ed7a7522891756][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:21] +[<<][56cec8f9ed7a7522891756][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:21][16/Feb/25 09:27:22][took 0.042004 secs] +[<<][56cec8ff6fe14245669718][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.067006 secs] +[>>][56cec8ff807ba941458578][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:27] +[<<][56cec8ff807ba941458578][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.006001 secs] +[<<][56cec8ff8bb6f309708518][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.076008 secs] +[>>][56cec8ff9e83f286411286][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:27:27] +[<<][56cec8ff9e83f286411286][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.038004 secs] +[<<][56cec8ff8c727225985192][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.146015 secs] +[>>][56cec8ffb056e447818629][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:27:27] +[<<][56cec8ffb056e447818629][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.008001 secs] +[<<][56cec8ffd573d072082758][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.063007 secs] +[>>][56cec8ffe552c214979473][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:27] +[<<][56cec8ffe552c214979473][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:27][16/Feb/25 09:27:27][took 0.007 secs] +[<<][56cec9000c0a7127719303][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:28][16/Feb/25 09:27:28][took 0.066006 secs] +[>>][56cec9001c27d939662313][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:28] +[<<][56cec9001c27d939662313][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:27:28][16/Feb/25 09:27:28][took 0.007001 secs] +[<<][56cec9023bf22515763193][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:27:30][16/Feb/25 09:27:30][took 0.069007 secs] +[>>][56cec9024ccb1331775043][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:27:30] +[<<][56cec9024ccb1331775043][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:27:30][16/Feb/25 09:27:30][took 0.107011 secs] +[<<][56cec9051dbe2649764969][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.072007 secs] +[>>][56cec9052fcf9926391944][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:33] +[<<][56cec9052fcf9926391944][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.006001 secs] +[<<][56cec9053f700466173256][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.073007 secs] +[>>][56cec90551bff709337425][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:33] +[<<][56cec90551bff709337425][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.026003 secs] +[<<][56cec9053fed0057751376][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.121012 secs] +[>>][56cec9055df54279823900][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:33] +[<<][56cec9055df54279823900][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:33][16/Feb/25 09:27:33][took 0.036004 secs] +[<<][56cec90ab1d43404273343][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:38][16/Feb/25 09:27:38][took 0.067006 secs] +[>>][56cec90ac2ad1851725982][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:38] +[<<][56cec90ac2ad1851725982][DEFAULT][/new_pull/lib/requirements/reqOverview.php][16/Feb/25 09:27:38][16/Feb/25 09:27:38][took 0.038004 secs] +[<<][56cec90c960af840784536][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.081008 secs] +[>>][56cec90caa4ef108083339][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:40] +[<<][56cec90caa4ef108083339][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.006001 secs] +[<<][56cec90cb9726582306480][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.074007 secs] +[>>][56cec90ccb83d306031827][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:40] +[<<][56cec90ccb83d306031827][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.022002 secs] +[<<][56cec90cbb27e738143990][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.111012 secs] +[>>][56cec90cd680a203441187][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:40] +[<<][56cec90cd680a203441187][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:40][16/Feb/25 09:27:40][took 0.039004 secs] +[<<][56cec90ec1109182764537][DEFAULT][/new_pull/lib/plan/planView.php][16/Feb/25 09:27:42][16/Feb/25 09:27:42][took 0.065006 secs] +[>>][56cec90ed0ef7110214897][DEFAULT][/new_pull/lib/plan/planView.php][16/Feb/25 09:27:42] +[<<][56cec90ed0ef7110214897][DEFAULT][/new_pull/lib/plan/planView.php][16/Feb/25 09:27:42][16/Feb/25 09:27:42][took 0.134014 secs] +[<<][56cec910bbbdf677994737][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:44][16/Feb/25 09:27:44][took 0.092009 secs] +[>>][56cec910d2730943719564][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:44] +[<<][56cec910d2730943719564][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:44][16/Feb/25 09:27:45][took 0.183018 secs] +[<<][56cec9194d5ad522170886][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:53][16/Feb/25 09:27:53][took 0.070007 secs] +[>>][56cec9195eb0c059005768][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:53] + [16/Feb/25 09:27:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Test Project 'testlink' - Test Plan 'asd' was created + [16/Feb/25 09:27:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was assigned the role 'admin' to the Test Plan 'asd' +[<<][56cec9195eb0c059005768][DEFAULT][/new_pull/lib/plan/planEdit.php][16/Feb/25 09:27:53][16/Feb/25 09:27:53][took 0.074008 secs] +[<<][56cec91bf0c00929702187][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:55][16/Feb/25 09:27:56][took 0.078008 secs] +[>>][56cec91c0fe60134415317][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:56] +[<<][56cec91c0fe60134415317][DEFAULT][/new_pull/index.php][16/Feb/25 09:27:56][16/Feb/25 09:27:56][took 0.007001 secs] +[<<][56cec91c21b8f471438611][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:56][16/Feb/25 09:27:56][took 0.081008 secs] +[>>][56cec91c35be8209275828][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:56] +[<<][56cec91c35be8209275828][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:27:56][16/Feb/25 09:27:56][took 0.024002 secs] +[<<][56cec91c21b8f525440369][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:56][16/Feb/25 09:27:56][took 0.130013 secs] +[>>][56cec91c41b54421296289][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:56] +[<<][56cec91c41b54421296289][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:27:56][16/Feb/25 09:27:56][took 0.034004 secs] +[<<][56cec91f1fd7b321530481][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.074007 secs] +[>>][56cec91f3227a982061100][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:59] +[<<][56cec91f3227a982061100][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.006001 secs] +[<<][56cec91f408f8629326538][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.080008 secs] +[>>][56cec91f54568702777555][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:27:59] +[<<][56cec91f54568702777555][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.124012 secs] +[<<][56cec91f3f958695548171][DEFAULT][/new_pull/lib/testcases/listTestCases.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.243024 secs] +[>>][56cec91f7aea8088608556][DEFAULT][/new_pull/lib/testcases/listTestCases.php][16/Feb/25 09:27:59] +[<<][56cec91f7aea8088608556][DEFAULT][/new_pull/lib/testcases/listTestCases.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.171017 secs] +[<<][56cec91fc7187911768189][DEFAULT][/new_pull/lib/ajax/gettprojectnodes.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.074007 secs] +[>>][56cec91fd9687794354482][DEFAULT][/new_pull/lib/ajax/gettprojectnodes.php][16/Feb/25 09:27:59] +[<<][56cec91fd9687794354482][DEFAULT][/new_pull/lib/ajax/gettprojectnodes.php][16/Feb/25 09:27:59][16/Feb/25 09:27:59][took 0.005 secs] +[<<][56cec9216c122106519749][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:28:01][16/Feb/25 09:28:01][took 0.065006 secs] +[>>][56cec9217c6e0763053823][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:28:01] +[<<][56cec9217c6e0763053823][DEFAULT][/new_pull/lib/testcases/archiveData.php][16/Feb/25 09:28:01][16/Feb/25 09:28:01][took 0.038004 secs] +[<<][56cec9232d5e8076358479][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.077008 secs] +[>>][56cec923406a0056611679][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:03] +[<<][56cec923406a0056611679][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.006 secs] +[<<][56cec92353b40130117363][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.082008 secs] +[>>][56cec92367f80553811633][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:03] +[<<][56cec92367f80553811633][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.030003 secs] +[<<][56cec92352f87876719018][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.145014 secs] +[>>][56cec923769e6767493246][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:03] +[<<][56cec923769e6767493246][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:03][16/Feb/25 09:28:03][took 0.027003 secs] +[<<][56cec925b3f3f012459328][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.063006 secs] +[>>][56cec925c3946527092270][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:28:05] +[<<][56cec925c3946527092270][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.007 secs] +[<<][56cec925d046b884252030][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.069007 secs] +[>>][56cec925e15e2104004953][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:28:05] +[<<][56cec925e15e2104004953][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.034003 secs] +[<<][56cec925d046b508585758][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.126012 secs] +[>>][56cec925ef48f922143388][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:05] +[<<][56cec925ef48f922143388][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:05][16/Feb/25 09:28:05][took 0.008 secs] +[<<][56cec9261f096723364739][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06][16/Feb/25 09:28:06][took 0.075008 secs] +[>>][56cec9263197e609051310][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06] +[<<][56cec9263197e609051310][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06][16/Feb/25 09:28:06][took 0.008001 secs] +[<<][56cec9264abe0980547574][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06][16/Feb/25 09:28:06][took 0.071007 secs] +[>>][56cec9265c90f410055337][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06] +[<<][56cec9265c90f410055337][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 09:28:06][16/Feb/25 09:28:06][took 0.008001 secs] +[<<][56cec927af5cd749352459][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:28:07][16/Feb/25 09:28:07][took 0.071007 secs] +[>>][56cec927c0f14133620876][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:28:07] +[<<][56cec927c0f14133620876][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 09:28:07][16/Feb/25 09:28:07][took 0.057006 secs] +[<<][56cec92909de1796096881][DEFAULT][/new_pull/lib/requirements/reqSpecView.php][16/Feb/25 09:28:09][16/Feb/25 09:28:09][took 0.090009 secs] +[>>][56cec92920163028675495][DEFAULT][/new_pull/lib/requirements/reqSpecView.php][16/Feb/25 09:28:09] +[<<][56cec92920163028675495][DEFAULT][/new_pull/lib/requirements/reqSpecView.php][16/Feb/25 09:28:09][16/Feb/25 09:28:09][took 0.071007 secs] +[<<][56cec92b3cf26459201973][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:11][16/Feb/25 09:28:11][took 0.067007 secs] +[>>][56cec92b4d4e5402118703][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:11] +[<<][56cec92b4d4e5402118703][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 09:28:11][16/Feb/25 09:28:11][took 0.007001 secs] +[<<][56cec92cd3608667791315][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:12][16/Feb/25 09:28:12][took 0.078008 secs] +[>>][56cec92ce6aa8859675946][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:12] +[<<][56cec92ce6aa8859675946][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:12][16/Feb/25 09:28:12][took 0.006 secs] +[<<][56cec92d02a3e087512195][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:13][16/Feb/25 09:28:13][took 0.080008 secs] +[>>][56cec92d166af146470259][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:13] +[<<][56cec92d166af146470259][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:13][16/Feb/25 09:28:13][took 0.023002 secs] +[<<][56cec92d03dc7933732661][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:13][16/Feb/25 09:28:13][took 0.123012 secs] +[>>][56cec92d22233459330112][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:13] +[<<][56cec92d22233459330112][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:13][16/Feb/25 09:28:13][took 0.036004 secs] +[<<][56cec92fe2d52584635907][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:15][16/Feb/25 09:28:15][took 0.062007 secs] +[>>][56cec92ff2371490250320][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:15] + [16/Feb/25 09:28:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:28:16][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cec92ff2371490250320][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:15][16/Feb/25 09:28:16][took 0.034003 secs] +[<<][56cec93200521503728436][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.066007 secs] +[>>][56cec932106f8066070399][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:18] +[<<][56cec932106f8066070399][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.006001 secs] +[<<][56cec9321f92e558891448][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.079008 secs] +[>>][56cec93232dce824938328][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:18] +[<<][56cec93232dce824938328][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.024003 secs] +[<<][56cec932200fe414333218][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.130013 secs] +[>>][56cec932400c4234511311][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:18] +[<<][56cec932400c4234511311][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:18][16/Feb/25 09:28:18][took 0.034003 secs] +[<<][56cec933560c1050530997][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:28:19][16/Feb/25 09:28:19][took 0.065006 secs] +[>>][56cec93366297549346326][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:28:19] +[<<][56cec93366297549346326][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:28:19][16/Feb/25 09:28:19][took 0.020002 secs] +[<<][56cec94e4ea61810863740][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.060006 secs] +[>>][56cec94e5d8af437533051][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:46] +[<<][56cec94e5d8af437533051][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.006001 secs] +[<<][56cec94e6e256521708323][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.077008 secs] +[>>][56cec94e816f6504467910][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:46] +[<<][56cec94e816f6504467910][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.022002 secs] +[<<][56cec94e6e256594859583][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.133013 secs] +[>>][56cec94e8edd4493846439][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:46] +[<<][56cec94e8edd4493846439][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:46][16/Feb/25 09:28:46][took 0.037003 secs] +[<<][56cec95076021955540195][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:48][16/Feb/25 09:28:48][took 0.067007 secs] +[>>][56cec950865e0982584233][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:48] + [16/Feb/25 09:28:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:28:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cec950865e0982584233][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:28:48][16/Feb/25 09:28:48][took 0.034003 secs] +[<<][56cec951e908c726002161][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:49][16/Feb/25 09:28:50][took 0.067006 secs] +[>>][56cec952057f3997393573][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:50] +[<<][56cec952057f3997393573][DEFAULT][/new_pull/index.php][16/Feb/25 09:28:50][16/Feb/25 09:28:50][took 0.006001 secs] +[<<][56cec9521790b929152980][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:50][16/Feb/25 09:28:50][took 0.085008 secs] +[>>][56cec9522cceb965908269][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:50] +[<<][56cec9522cceb965908269][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:28:50][16/Feb/25 09:28:50][took 0.022003 secs] +[<<][56cec9521907b576389585][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:50][16/Feb/25 09:28:50][took 0.122013 secs] +[>>][56cec95237100361440465][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:50] +[<<][56cec95237100361440465][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:28:50][16/Feb/25 09:28:50][took 0.034003 secs] +[<<][56cec95392a61571975716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:28:51][16/Feb/25 09:28:51][took 0.073007 secs] +[>>][56cec953a4790245342562][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:28:51] + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:28:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec953a4790245342562][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:28:51][16/Feb/25 09:28:51][took 0.036004 secs] +[<<][56cec9623fffb726093993][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:06][16/Feb/25 09:29:06][took 0.077008 secs] +[>>][56cec962530b3485707535][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:06] +[<<][56cec962530b3485707535][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:06][16/Feb/25 09:29:06][took 0.027003 secs] +[<<][56cec9638a015174640688][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:07][16/Feb/25 09:29:07][took 0.069007 secs] +[>>][56cec9639b18c601244844][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:07] +[<<][56cec9639b18c601244844][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:07][16/Feb/25 09:29:07][took 0.012002 secs] +[<<][56cec96c7bd1b269107378][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.074008 secs] +[>>][56cec96c8e21b707788415][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:16] +[<<][56cec96c8e21b707788415][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.006001 secs] +[<<][56cec96c9f392200900098][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.078008 secs] +[>>][56cec96cb244a336764043][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:16] +[<<][56cec96cb244a336764043][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.027003 secs] +[<<][56cec96c9f392306050512][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.132013 secs] +[>>][56cec96cbf73f466575949][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:16] +[<<][56cec96cbf73f466575949][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:16][16/Feb/25 09:29:16][took 0.027003 secs] +[<<][56cec971b7848977492449][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:21][16/Feb/25 09:29:21][took 0.060006 secs] +[>>][56cec971c6696112531230][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:21] +[<<][56cec971c6696112531230][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:21][16/Feb/25 09:29:21][took 0.012001 secs] +[<<][56cec98c92164863232084][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.061006 secs] +[>>][56cec98ca1783025761357][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:48] +[<<][56cec98ca1783025761357][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.0059999999999999 secs] +[<<][56cec98cb389a827869410][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.09901 secs] +[>>][56cec98ccbf44924186836][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:48] +[<<][56cec98ccbf44924186836][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.028003 secs] +[<<][56cec98cb389a280050889][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.166017 secs] +[>>][56cec98cdc11b619487268][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:48] +[<<][56cec98cdc11b619487268][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:48][16/Feb/25 09:29:48][took 0.032003 secs] +[<<][56cec98e5650c077951002][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:50][16/Feb/25 09:29:50][took 0.073007 secs] +[>>][56cec98e68623308765276][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:50] +[<<][56cec98e68623308765276][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:29:50][16/Feb/25 09:29:50][took 0.013001 secs] +[<<][56cec990590cd215147454][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.073007 secs] +[>>][56cec9906b1e4525699941][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:52] +[<<][56cec9906b1e4525699941][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.006001 secs] +[<<][56cec99079c4a256357972][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.073008 secs] +[>>][56cec9908bd62010360533][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:52] +[<<][56cec9908bd62010360533][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.025002 secs] +[<<][56cec9907a803398678056][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.119011 secs] +[>>][56cec99097ccf774858020][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:52] +[<<][56cec99097ccf774858020][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:52][16/Feb/25 09:29:52][took 0.034003 secs] +[<<][56cec99287008296688815][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:29:54][16/Feb/25 09:29:54][took 0.081008 secs] +[>>][56cec9929b060985042272][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:29:54] + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:29:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cec9929b060985042272][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:29:54][16/Feb/25 09:29:54][took 0.035003 secs] +[<<][56cec99395301873704354][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.086009 secs] +[>>][56cec993aa6e2777191805][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:55] +[<<][56cec993aa6e2777191805][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.007001 secs] +[<<][56cec993ba0e9295860607][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.080008 secs] +[>>][56cec993cd971899071185][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:55] +[<<][56cec993cd971899071185][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.029003 secs] +[<<][56cec993ba4d1742519147][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.132013 secs] +[>>][56cec993da87e771030739][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:55] +[<<][56cec993da87e771030739][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:55][16/Feb/25 09:29:55][took 0.027003 secs] +[<<][56cec994caedb011218542][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:29:56][16/Feb/25 09:29:56][took 0.077007 secs] +[>>][56cec994de37b017417241][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:29:56] + [16/Feb/25 09:29:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:29:56][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cec994de37b017417241][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:29:56][16/Feb/25 09:29:56][took 0.036004 secs] +[<<][56cec997122b4944308823][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.075007 secs] +[>>][56cec99724f83816322247][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:59] +[<<][56cec99724f83816322247][DEFAULT][/new_pull/index.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.006001 secs] +[<<][56cec997360fa509788799][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.081009 secs] +[>>][56cec9974a153023962843][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:59] +[<<][56cec9974a153023962843][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.023002 secs] +[<<][56cec99735d12066496091][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.139014 secs] +[>>][56cec99758000290350692][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:59] +[<<][56cec99758000290350692][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:29:59][16/Feb/25 09:29:59][took 0.036004 secs] +[<<][56cec999da6ee571674593][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:01][16/Feb/25 09:30:01][took 0.066006 secs] +[>>][56cec999eacac387442134][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:01] +[<<][56cec999eacac387442134][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:01][16/Feb/25 09:30:01][took 0.013002 secs] +[<<][56cec99b35ea2284087509][DEFAULT][/new_pull/lib/cfields/cfieldsEdit.php][16/Feb/25 09:30:03][16/Feb/25 09:30:03][took 0.083009 secs] +[>>][56cec99b4a6cb918435752][DEFAULT][/new_pull/lib/cfields/cfieldsEdit.php][16/Feb/25 09:30:03] +[<<][56cec99b4a6cb918435752][DEFAULT][/new_pull/lib/cfields/cfieldsEdit.php][16/Feb/25 09:30:03][16/Feb/25 09:30:03][took 0.033003 secs] +[<<][56cec99ca6fcd835700295][DEFAULT][/new_pull/index.php][16/Feb/25 09:30:04][16/Feb/25 09:30:04][took 0.085008 secs] +[>>][56cec99cbc3ad253421477][DEFAULT][/new_pull/index.php][16/Feb/25 09:30:04] +[<<][56cec99cbc3ad253421477][DEFAULT][/new_pull/index.php][16/Feb/25 09:30:04][16/Feb/25 09:30:04][took 0.0060009999999999 secs] +[<<][56cec99ccbdb4743757766][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:30:04][16/Feb/25 09:30:04][took 0.086008 secs] +[>>][56cec99ce157d221670964][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:30:04] +[<<][56cec99ce157d221670964][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:30:04][16/Feb/25 09:30:04][took 0.030003 secs] +[<<][56cec99ccc584341979919][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:30:04][16/Feb/25 09:30:04][took 0.144014 secs] +[>>][56cec99cef812950038101][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:30:04] +[<<][56cec99cef812950038101][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:30:04][16/Feb/25 09:30:05][took 0.028003 secs] +[<<][56cec99f6793f677527604][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:07][16/Feb/25 09:30:07][took 0.073007 secs] +[>>][56cec99f79a56014107478][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:07] +[<<][56cec99f79a56014107478][DEFAULT][/new_pull/lib/cfields/cfieldsView.php][16/Feb/25 09:30:07][16/Feb/25 09:30:07][took 0.012001 secs] +[<<][56ceca283dff0897895122][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.082009 secs] +[>>][56ceca2852819058142421][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:24] +[<<][56ceca2852819058142421][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.008 secs] +[<<][56ceca286a6f2237005429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.107011 secs] +[>>][56ceca2884cdd227503545][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:24] +[<<][56ceca2884cdd227503545][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.027003 secs] +[<<][56ceca28700cd278626417][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.135013 secs] +[>>][56ceca2891802223121850][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:24] +[<<][56ceca2891802223121850][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:24][16/Feb/25 09:32:24][took 0.053006 secs] +[<<][56ceca29b105b507373195][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:25][16/Feb/25 09:32:25][took 0.076008 secs] +[>>][56ceca29c3d2b515185866][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:25] +[<<][56ceca29c3d2b515185866][DEFAULT][/new_pull/index.php][16/Feb/25 09:32:25][16/Feb/25 09:32:25][took 0.006001 secs] +[<<][56ceca29da494118786339][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:25][16/Feb/25 09:32:25][took 0.089009 secs] +[>>][56ceca29f0045705171606][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:25] +[<<][56ceca29f0045705171606][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:32:25][16/Feb/25 09:32:26][took 0.027003 secs] +[<<][56ceca29ddf2e628020408][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:25][16/Feb/25 09:32:26][took 0.138014 secs] +[>>][56ceca2a0bfdc377582516][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:26] +[<<][56ceca2a0bfdc377582516][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:32:26][16/Feb/25 09:32:26][took 0.035003 secs] +[<<][56ceca2bcbede332287090][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:27][16/Feb/25 09:32:27][took 0.082009 secs] +[>>][56ceca2be0707987616145][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:27] + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:32:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 10 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceca2be0707987616145][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:27][16/Feb/25 09:32:27][took 0.036003 secs] +[<<][56ceca360051f466760846][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:38][16/Feb/25 09:32:38][took 0.074007 secs] +[>>][56ceca3612e06944095842][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:38] + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:32:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56ceca3612e06944095842][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:32:38][16/Feb/25 09:32:38][took 0.034004 secs] +[<<][56ceca4037805942755642][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:32:48][16/Feb/25 09:32:48][took 0.074008 secs] +[>>][56ceca404a0ed543713030][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:32:48] + [16/Feb/25 09:32:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:32:48][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56ceca404a0ed543713030][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:32:48][16/Feb/25 09:32:48][took 0.076008 secs] +[<<][56ceca5122ac9513935815][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.075007 secs] +[>>][56ceca51353b0504898273][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:05] +[<<][56ceca51353b0504898273][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.005001 secs] +[<<][56ceca5149bd9541361480][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.085009 secs] +[>>][56ceca515fb72934258429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:05] +[<<][56ceca515fb72934258429][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.026002 secs] +[<<][56ceca514da5a663630373][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.120012 secs] +[>>][56ceca516b6f6224616683][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:05] +[<<][56ceca516b6f6224616683][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:05][16/Feb/25 09:33:05][took 0.035004 secs] +[<<][56ceca55edeac314892452][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:33:09][16/Feb/25 09:33:10][took 0.081008 secs] +[>>][56ceca560dcc4518763371][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:33:10] + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:33:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56ceca560dcc4518763371][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:33:10][16/Feb/25 09:33:10][took 0.035004 secs] +[<<][56ceca583566c821619898][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:33:12][16/Feb/25 09:33:12][took 0.078008 secs] +[>>][56ceca5848b0c840217301][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:33:12] + [16/Feb/25 09:33:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:33:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56ceca5848b0c840217301][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:33:12][16/Feb/25 09:33:12][took 0.077008 secs] +[<<][56ceca5d04724184939138][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.083008 secs] +[>>][56ceca5d18f4d917797426][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:17] +[<<][56ceca5d18f4d917797426][DEFAULT][/new_pull/index.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.006 secs] +[<<][56ceca5d2d38d349528622][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.086008 secs] +[>>][56ceca5d42385654104899][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:17] +[<<][56ceca5d42385654104899][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.030003 secs] +[<<][56ceca5d2fa9e367200054][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.126013 secs] +[>>][56ceca5d4eeab382030423][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:17] +[<<][56ceca5d4eeab382030423][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:33:17][16/Feb/25 09:33:17][took 0.035003 secs] +[<<][56ceca94d64e6057102701][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:12][16/Feb/25 09:34:12][took 0.062006 secs] +[>>][56ceca94e5b04086168733][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:12] +[<<][56ceca94e5b04086168733][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:12][16/Feb/25 09:34:12][took 0.006 secs] +[<<][56ceca950b2f6932824024][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:13][16/Feb/25 09:34:13][took 0.073008 secs] +[>>][56ceca951d026973077983][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:13] +[<<][56ceca951d026973077983][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:13][16/Feb/25 09:34:13][took 0.033003 secs] +[<<][56ceca950b2f6069141377][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:13][16/Feb/25 09:34:13][took 0.131013 secs] +[>>][56ceca952b6a4072571898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:13] +[<<][56ceca952b6a4072571898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:13][16/Feb/25 09:34:13][took 0.055005 secs] +[<<][56ceca97280ba069284124][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.077008 secs] +[>>][56ceca973b172692211240][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:15] +[<<][56ceca973b172692211240][DEFAULT][/new_pull/index.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.006001 secs] +[<<][56ceca9752493733452720][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.079007 secs] +[>>][56ceca9766104263218879][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:15] +[<<][56ceca9766104263218879][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.030003 secs] +[<<][56ceca97514f3169718113][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.143014 secs] +[>>][56ceca9774b6a515580474][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:15] +[<<][56ceca9774b6a515580474][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:34:15][16/Feb/25 09:34:15][took 0.032003 secs] +[<<][56ceca99085a5593728099][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:17][16/Feb/25 09:34:17][took 0.081008 secs] +[>>][56ceca991c9e5510873871][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:17] + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4086 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined variable: transformedResults - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4125 + [16/Feb/25 09:34:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56ceca991c9e5510873871][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:17][16/Feb/25 09:34:17][took 0.085009 secs] +[<<][56ceca9b539ac375728486][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:34:19][16/Feb/25 09:34:19][took 0.079008 secs] +[>>][56ceca9b6761c260523284][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:34:19] + [16/Feb/25 09:34:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 09:34:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4174 +[<<][56ceca9b6761c260523284][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 09:34:19][16/Feb/25 09:34:19][took 0.028003 secs] +[<<][56ceca9f7a094486918587][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:23][16/Feb/25 09:34:23][took 0.088008 secs] +[>>][56ceca9f8f85c039821136][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:23] + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:34:23][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ceca9f8f85c039821136][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:34:23][16/Feb/25 09:34:23][took 0.039004 secs] +[<<][56cecb9d223bd146851226][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.074008 secs] +[>>][56cecb9d348bd428254682][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:37] +[<<][56cecb9d348bd428254682][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.013001 secs] +[<<][56cecb9d4a085670570838][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.089008 secs] +[>>][56cecb9d6001e937864253][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:37] +[<<][56cecb9d6001e937864253][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.034004 secs] +[<<][56cecb9d4fe48016798562][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.137014 secs] +[>>][56cecb9d71d4e393846300][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:37] +[<<][56cecb9d71d4e393846300][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:37][16/Feb/25 09:38:37][took 0.048005 secs] +[<<][56cecb9f2c0c9273444316][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:38:39][16/Feb/25 09:38:39][took 0.081008 secs] +[>>][56cecb9f40509136723303][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:38:39] + [16/Feb/25 09:38:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:38:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cecb9f40509136723303][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:38:39][16/Feb/25 09:38:39][took 0.051006 secs] +[<<][56cecba0ab0a1567710279][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:40][16/Feb/25 09:38:40][took 0.070007 secs] +[>>][56cecba0bc9e8530873539][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:40] +[<<][56cecba0bc9e8530873539][DEFAULT][/new_pull/index.php][16/Feb/25 09:38:40][16/Feb/25 09:38:40][took 0.0060009999999999 secs] +[<<][56cecba0d1dc9844895971][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:40][16/Feb/25 09:38:40][took 0.091009 secs] +[>>][56cecba0e8532230561009][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:40] +[<<][56cecba0e8532230561009][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:38:40][16/Feb/25 09:38:40][took 0.033004 secs] +[<<][56cecba0d1dc9949863481][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:40][16/Feb/25 09:38:41][took 0.153015 secs] +[>>][56cecba103911722922151][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:41] +[<<][56cecba103911722922151][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:38:41][16/Feb/25 09:38:41][took 0.026002 secs] +[<<][56cecba1d87a8195386504][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:38:41][16/Feb/25 09:38:41][took 0.082008 secs] +[>>][56cecba1ecbe8567501105][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:38:41] + [16/Feb/25 09:38:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 09:38:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 09:38:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:38:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:38:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:38:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:38:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cecba1ecbe8567501105][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:38:41][16/Feb/25 09:38:42][took 0.044004 secs] +[<<][56cecfa0b5253934768577][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:44][16/Feb/25 09:55:44][took 0.085009 secs] +[>>][56cecfa0ca634946123516][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:44] +[<<][56cecfa0ca634946123516][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:44][16/Feb/25 09:55:44][took 0.006 secs] +[<<][56cecfa0e5007603739161][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:44][16/Feb/25 09:55:45][took 0.089009 secs] +[>>][56cecfa106d60625738534][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:45] +[<<][56cecfa106d60625738534][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:45][16/Feb/25 09:55:45][took 0.033003 secs] +[<<][56cecfa0e4836063571624][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:44][16/Feb/25 09:55:45][took 0.150015 secs] +[>>][56cecfa1157c6478138826][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:45] +[<<][56cecfa1157c6478138826][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:45][16/Feb/25 09:55:45][took 0.032003 secs] +[<<][56cecfa50c4e2188537335][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:55:49][16/Feb/25 09:55:49][took 0.063006 secs] +[>>][56cecfa51bb00122286255][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:55:49] + [16/Feb/25 09:55:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 09:55:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cecfa51bb00122286255][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 09:55:49][16/Feb/25 09:55:49][took 0.037004 secs] +[<<][56cecfa69221d727302323][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.072007 secs] +[>>][56cecfa6a4334364554188][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:50] +[<<][56cecfa6a4334364554188][DEFAULT][/new_pull/index.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.0060009999999999 secs] +[<<][56cecfa6baa9d931050929][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.09901 secs] +[>>][56cecfa6d3147636848463][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:50] +[<<][56cecfa6d3147636848463][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.030003 secs] +[<<][56cecfa6b9afd915980586][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.159016 secs] +[>>][56cecfa6e0c0d511741109][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:50] +[<<][56cecfa6e0c0d511741109][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 09:55:50][16/Feb/25 09:55:50][took 0.035003 secs] +[<<][56cecfa7ec40e634957485][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:55:51][16/Feb/25 09:55:52][took 0.078007 secs] +[>>][56cecfa80b66d867990402][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:55:52] + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4108 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 09:55:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 4 - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56cecfa80b66d867990402][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 09:55:52][16/Feb/25 09:55:52][took 0.042004 secs] +[<<][56ced48a76986222765162][DEFAULT][/new_pull/index.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.086008 secs] +[>>][56ced48a8c14f365599656][DEFAULT][/new_pull/index.php][16/Feb/25 10:16:42] +[<<][56ced48a8c14f365599656][DEFAULT][/new_pull/index.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.007 secs] +[<<][56ced48aa1cff125209503][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.092009 secs] +[>>][56ced48ab8851687633559][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:16:42] +[<<][56ced48ab8851687633559][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.035003 secs] +[<<][56ced48aa47f9997846909][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.142014 secs] +[>>][56ced48ac72b7325844859][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:16:42] +[<<][56ced48ac72b7325844859][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:16:42][16/Feb/25 10:16:42][took 0.055005 secs] +[<<][56ced48ca96e3193861328][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:16:44][16/Feb/25 10:16:44][took 0.079008 secs] +[>>][56ced48cbd353233933459][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:16:44] + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 80 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 85 + [16/Feb/25 10:16:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: user_name - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 87 +[<<][56ced48cbd353233933459][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:16:44][16/Feb/25 10:16:44][took 0.041004 secs] +[<<][56ced72de463c767163546][DEFAULT][/new_pull/index.php][16/Feb/25 10:27:57][16/Feb/25 10:27:58][took 0.069 secs] +[>>][56ced72e0156c068113857][DEFAULT][/new_pull/index.php][16/Feb/25 10:27:58] +[<<][56ced72e0156c068113857][DEFAULT][/new_pull/index.php][16/Feb/25 10:27:58][16/Feb/25 10:27:58][took 0.007 secs] +[<<][56ced72e1a7c4678338930][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:27:58][16/Feb/25 10:27:58][took 0.077 secs] +[>>][56ced72e2d874206393140][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:27:58] +[<<][56ced72e2d874206393140][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:27:58][16/Feb/25 10:27:58][took 0.034 secs] +[<<][56ced72e1943c380873003][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:27:58][16/Feb/25 10:27:58][took 0.142 secs] +[>>][56ced72e3c6bc013717473][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:27:58] +[<<][56ced72e3c6bc013717473][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:27:58][16/Feb/25 10:27:58][took 0.04 secs] +[<<][56ced72f6a904186293701][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:27:59][16/Feb/25 10:27:59][took 0.09 secs] +[>>][56ced72f80c7c068606474][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:27:59] + [16/Feb/25 10:27:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:27:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:27:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:27:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 +[<<][56ced72f80c7c068606474][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:27:59][16/Feb/25 10:27:59][took 0.067 secs] +[<<][56ced7500926c420527187][DEFAULT][/new_pull/index.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.066 secs] +[>>][56ced75019824241204210][DEFAULT][/new_pull/index.php][16/Feb/25 10:28:32] +[<<][56ced75019824241204210][DEFAULT][/new_pull/index.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.007 secs] +[<<][56ced75033634554262764][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.093 secs] +[>>][56ced7504a564867313920][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:28:32] +[<<][56ced7504a564867313920][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.027 secs] +[<<][56ced75034da4326526360][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.138 secs] +[>>][56ced75057084942607347][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:28:32] +[<<][56ced75057084942607347][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:28:32][16/Feb/25 10:28:32][took 0.056 secs] +[<<][56ced75247e54787459787][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:28:34][16/Feb/25 10:28:34][took 0.078 secs] +[>>][56ced7525b6d4857547153][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:28:34] + [16/Feb/25 10:28:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:28:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:28:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:28:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:28:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 38 +[<<][56ced7525b6d4857547153][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:28:34][16/Feb/25 10:28:34][took 0.085 secs] +[<<][56ced78d0f7fc545905003][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.071 secs] +[>>][56ced78d20d54339826490][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:33] +[<<][56ced78d20d54339826490][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.008 secs] +[<<][56ced78d36ce4920602843][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.089 secs] +[>>][56ced78d4d05c578926214][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:33] +[<<][56ced78d4d05c578926214][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.027 secs] +[<<][56ced78d3ab64574717301][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.127 secs] +[>>][56ced78d59f64740119575][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:33] +[<<][56ced78d59f64740119575][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:33][16/Feb/25 10:29:33][took 0.047 secs] +[<<][56ced78f28a54205174681][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:29:35][16/Feb/25 10:29:35][took 0.087 secs] +[>>][56ced78f3e214287474647][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:29:35] + [16/Feb/25 10:29:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:29:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:29:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:29:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:29:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 39 +[<<][56ced78f3e214287474647][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:29:35][16/Feb/25 10:29:35][took 0.079 secs] +[<<][56ced7a3c36e4773079903][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:55][16/Feb/25 10:29:55][took 0.072 secs] +[>>][56ced7a3d540c624359804][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:55] +[<<][56ced7a3d540c624359804][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:55][16/Feb/25 10:29:55][took 0.006 secs] +[<<][56ced7a3ebf54356671801][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:55][16/Feb/25 10:29:56][took 0.103 secs] +[>>][56ced7a411354072780646][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:56] +[<<][56ced7a411354072780646][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:56][16/Feb/25 10:29:56][took 0.03 secs] +[<<][56ced7a40638c619795937][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:56][16/Feb/25 10:29:56][took 0.096 secs] +[>>][56ced7a41e25c409033373][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:56] +[<<][56ced7a41e25c409033373][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:56][16/Feb/25 10:29:56][took 0.053 secs] +[<<][56ced7a5c6d94407526373][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:29:57][16/Feb/25 10:29:57][took 0.074 secs] +[>>][56ced7a5d9674184159377][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:29:57] + [16/Feb/25 10:29:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 10:29:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56ced7a5d9674184159377][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:29:57][16/Feb/25 10:29:57][took 0.04 secs] +[<<][56ced7a730b3c135922826][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.076 secs] +[>>][56ced7a743bec621343118][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:59] +[<<][56ced7a743bec621343118][DEFAULT][/new_pull/index.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.006 secs] +[<<][56ced7a75e5b4798191902][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.095 secs] +[>>][56ced7a77609c130171026][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:59] +[<<][56ced7a77609c130171026][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.026 secs] +[<<][56ced7a75e99c999994018][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.146 secs] +[>>][56ced7a7827d4629350052][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:59] +[<<][56ced7a7827d4629350052][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:29:59][16/Feb/25 10:29:59][took 0.04 secs] +[<<][56ced7a8783c4213669762][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:00][16/Feb/25 10:30:00][took 0.087 secs] +[>>][56ced7a88df6c201903404][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:00] + [16/Feb/25 10:30:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:30:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:30:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:30:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:30:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ced7a88df6c201903404][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:00][16/Feb/25 10:30:00][took 0.081 secs] +[<<][56ced7b77b68c000795095][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.068 secs] +[>>][56ced7b78c02c647684725][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:15] +[<<][56ced7b78c02c647684725][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.006 secs] +[<<][56ced7b7a1bd4186050229][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.079 secs] +[>>][56ced7b7b583c579861849][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:15] +[<<][56ced7b7b583c579861849][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.032 secs] +[<<][56ced7b7a2f5c934127359][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.145 secs] +[>>][56ced7b7c65c4761874519][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:15] +[<<][56ced7b7c65c4761874519][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:15][16/Feb/25 10:30:15][took 0.049 secs] +[<<][56ced7b9b67dc421216633][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:30:17][16/Feb/25 10:30:17][took 0.085 secs] +[>>][56ced7b9cb7cc452029352][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:30:17] + [16/Feb/25 10:30:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 10:30:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56ced7b9cb7cc452029352][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:30:17][16/Feb/25 10:30:17][took 0.035 secs] +[<<][56ced7bb43fd4192050632][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.077 secs] +[>>][56ced7bb57084182394210][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:19] +[<<][56ced7bb57084182394210][DEFAULT][/new_pull/index.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.0059999999999999 secs] +[<<][56ced7bb6c074568793340][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.094 secs] +[>>][56ced7bb8338c834774043][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:19] +[<<][56ced7bb8338c834774043][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.025 secs] +[<<][56ced7bb6dbcc267322296][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.139 secs] +[>>][56ced7bb8fac4490166552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:19] +[<<][56ced7bb8fac4490166552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:30:19][16/Feb/25 10:30:19][took 0.035 secs] +[<<][56ced7bcb506c831013399][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:20][16/Feb/25 10:30:20][took 0.081 secs] +[>>][56ced7bcc94a4190825245][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:20] + [16/Feb/25 10:30:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:30:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:30:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:30:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:30:20][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ced7bcc94a4190825245][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:30:20][16/Feb/25 10:30:20][took 0.074 secs] +[<<][56ced828e26fc149734557][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:08][16/Feb/25 10:32:09][took 0.08 secs] +[>>][56ced82902124664524105][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:09] +[<<][56ced82902124664524105][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:09][16/Feb/25 10:32:09][took 0.006 secs] +[<<][56ced8291af94412994024][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:09][16/Feb/25 10:32:09][took 0.087 secs] +[>>][56ced82930b3c264830027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:09] +[<<][56ced82930b3c264830027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:09][16/Feb/25 10:32:09][took 0.033 secs] +[<<][56ced8291b37c996893798][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:09][16/Feb/25 10:32:09][took 0.143 secs] +[>>][56ced8293e5fc517633678][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:09] +[<<][56ced8293e5fc517633678][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:09][16/Feb/25 10:32:09][took 0.052 secs] +[<<][56ced82a99ed4881759070][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:10][16/Feb/25 10:32:10][took 0.08 secs] +[>>][56ced82aadf24728523682][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:10] + [16/Feb/25 10:32:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:32:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:32:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:32:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:32:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ced82aadf24728523682][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:10][16/Feb/25 10:32:10][took 0.084 secs] +[<<][56ced8342c104428509336][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.078 secs] +[>>][56ced8343f1b4419679432][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:20] +[<<][56ced8343f1b4419679432][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.006 secs] +[<<][56ced83455144164583308][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.091 secs] +[>>][56ced8346b8a4866341852][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:20] +[<<][56ced8346b8a4866341852][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.032 secs] +[<<][56ced83458024376069955][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.148 secs] +[>>][56ced8347c62c300231613][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:20] +[<<][56ced8347c62c300231613][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:20][16/Feb/25 10:32:20][took 0.059 secs] +[<<][56ced83609a3c484083235][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:32:22][16/Feb/25 10:32:22][took 0.082 secs] +[>>][56ced8361e25c964810083][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:32:22] + [16/Feb/25 10:32:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 10:32:22][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56ced8361e25c964810083][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:32:22][16/Feb/25 10:32:22][took 0.038 secs] +[<<][56ced836f3484628211976][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:22][16/Feb/25 10:32:23][took 0.075 secs] +[>>][56ced83711f0c966120418][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:23] +[<<][56ced83711f0c966120418][DEFAULT][/new_pull/index.php][16/Feb/25 10:32:23][16/Feb/25 10:32:23][took 0.006 secs] +[<<][56ced83727e9c714203578][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:23][16/Feb/25 10:32:23][took 0.111 secs] +[>>][56ced83743034144856752][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:23] +[<<][56ced83743034144856752][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:32:23][16/Feb/25 10:32:23][took 0.031 secs] +[<<][56ced8372bd1c557030841][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:23][16/Feb/25 10:32:23][took 0.153 secs] +[>>][56ced837512c4037889587][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:23] +[<<][56ced837512c4037889587][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:32:23][16/Feb/25 10:32:23][took 0.029 secs] +[<<][56ced838499ac085417990][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:24][16/Feb/25 10:32:24][took 0.11 secs] +[>>][56ced83864f2c006042213][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:24] + [16/Feb/25 10:32:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:32:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:32:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:32:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:32:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ced83864f2c006042213][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:24][16/Feb/25 10:32:24][took 0.087 secs] +[<<][56ced83e374b4286286045][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:32:30][16/Feb/25 10:32:30][took 0.094 secs] +[>>][56ced83e4e7cc219831433][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:32:30] + [16/Feb/25 10:32:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56ced83e4e7cc219831433][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:32:30][16/Feb/25 10:32:30][took 0.028 secs] +[<<][56ced8423edcc162728795][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:34][16/Feb/25 10:32:34][took 0.072 secs] +[>>][56ced8425070c023522848][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:34] + [16/Feb/25 10:32:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:32:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4017 + [16/Feb/25 10:32:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:32:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4105 + [16/Feb/25 10:32:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ced8425070c023522848][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:32:34][16/Feb/25 10:32:34][took 0.035 secs] +[<<][56cedc7886df8200819278][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.069013 secs] +[>>][56cedc7897f76327387780][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:32] +[<<][56cedc7897f76327387780][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.007001 secs] +[<<][56cedc78af689062328970][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.089018 secs] +[>>][56cedc78c5243471906779][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:32] +[<<][56cedc78c5243471906779][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.031006 secs] +[<<][56cedc78b38f4337905307][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.132027 secs] +[>>][56cedc78d4097980059076][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:32] +[<<][56cedc78d4097980059076][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:32][16/Feb/25 10:50:32][took 0.036007 secs] +[<<][56cedc7a513fc263108777][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:50:34][16/Feb/25 10:50:34][took 0.075015 secs] +[>>][56cedc7a63903038919823][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:50:34] + [16/Feb/25 10:50:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:50:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:50:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:50:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4103 + [16/Feb/25 10:50:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedc7a63903038919823][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:50:34][16/Feb/25 10:50:34][took 0.036007 secs] +[<<][56cedc7cdff40446880520][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:50:36][16/Feb/25 10:50:36][took 0.076015 secs] +[>>][56cedc7cf2c18311345128][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:50:36] + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4148 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:50:37][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cedc7cf2c18311345128][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:50:36][16/Feb/25 10:50:37][took 0.056011 secs] +[<<][56cedc9308f7f747026915][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.065013 secs] +[>>][56cedc9318d74025072627][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:59] +[<<][56cedc9318d74025072627][DEFAULT][/new_pull/index.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.007002 secs] +[<<][56cedc9330488238452640][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.093018 secs] +[>>][56cedc93473ca065509165][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:59] +[<<][56cedc93473ca065509165][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.025005 secs] +[<<][56cedc9335e64193658645][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.117024 secs] +[>>][56cedc9352f54335180763][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:59] +[<<][56cedc9352f54335180763][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:50:59][16/Feb/25 10:50:59][took 0.038008 secs] +[<<][56cedc95e8fcf066246582][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:51:01][16/Feb/25 10:51:02][took 0.072014 secs] +[>>][56cedc9606ac5256943785][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:51:02] + [16/Feb/25 10:51:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 10:51:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cedc9606ac5256943785][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:51:02][16/Feb/25 10:51:02][took 0.035007 secs] +[<<][56cedc9749244076275383][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.079016 secs] +[>>][56cedc975cebc834357496][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:03] +[<<][56cedc975cebc834357496][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.006001 secs] +[<<][56cedc9776ce1144328109][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.087018 secs] +[>>][56cedc978c0cb100765517][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:03] +[<<][56cedc978c0cb100765517][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.025005 secs] +[<<][56cedc9773246651661743][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.15003 secs] +[>>][56cedc979803c104150032][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:03] +[<<][56cedc979803c104150032][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:03][16/Feb/25 10:51:03][took 0.034007 secs] +[<<][56cedc98a6788921746018][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:04][16/Feb/25 10:51:04][took 0.071014 secs] +[>>][56cedc98b7cee004985292][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:04] + [16/Feb/25 10:51:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:51:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:51:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:51:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4103 + [16/Feb/25 10:51:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedc98b7cee004985292][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:04][16/Feb/25 10:51:04][took 0.032006 secs] +[<<][56cedc9c09687409987688][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:08][16/Feb/25 10:51:08][took 0.077015 secs] +[>>][56cedc9c1cb2f783442941][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:08] + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4148 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:08][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cedc9c1cb2f783442941][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:08][16/Feb/25 10:51:08][took 0.05001 secs] +[<<][56cedcc1b8d56126237372][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:45][16/Feb/25 10:51:45][took 0.061012 secs] +[>>][56cedcc1c7f92823124871][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:45] +[<<][56cedcc1c7f92823124871][DEFAULT][/new_pull/index.php][16/Feb/25 10:51:45][16/Feb/25 10:51:45][took 0.005001 secs] +[<<][56cedcc1e025e387310841][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:45][16/Feb/25 10:51:46][took 0.085017 secs] +[>>][56cedcc20101f238152498][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:46] +[<<][56cedcc20101f238152498][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:51:46][16/Feb/25 10:51:46][took 0.029006 secs] +[<<][56cedcc1deaed799461057][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:45][16/Feb/25 10:51:46][took 0.148029 secs] +[>>][56cedcc20eaea016370744][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:46] +[<<][56cedcc20eaea016370744][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:51:46][16/Feb/25 10:51:46][took 0.056012 secs] +[<<][56cedcc37e14d939860212][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:47][16/Feb/25 10:51:47][took 0.087018 secs] +[>>][56cedcc39391f048705982][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:47] + [16/Feb/25 10:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 84 + [16/Feb/25 10:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 95 + [16/Feb/25 10:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4103 + [16/Feb/25 10:51:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedcc39391f048705982][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:51:47][16/Feb/25 10:51:47][took 0.033007 secs] +[<<][56cedcc72bfc2480911719][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:51][16/Feb/25 10:51:51][took 0.077015 secs] +[>>][56cedcc73f082939500466][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:51] + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4148 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:51:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cedcc73f082939500466][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:51:51][16/Feb/25 10:51:51][took 0.057011 secs] +[<<][56cedd9d94806663449389][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.072007 secs] +[>>][56cedd9da691d400396979][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:25] +[<<][56cedd9da691d400396979][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.008001 secs] +[<<][56cedd9dbbcfe771025256][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.085009 secs] +[>>][56cedd9dd10df783175715][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:25] +[<<][56cedd9dd10df783175715][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.031003 secs] +[<<][56cedd9dbfb80780513870][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.126012 secs] +[>>][56cedd9ddef8d437731648][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:25] +[<<][56cedd9ddef8d437731648][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:25][16/Feb/25 10:55:25][took 0.050005 secs] +[<<][56cedd9f66e43605405058][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:55:27][16/Feb/25 10:55:27][took 0.075008 secs] +[>>][56cedd9f7972b879169873][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:55:27] + [16/Feb/25 10:55:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 10:55:27][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cedd9f7972b879169873][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 10:55:27][16/Feb/25 10:55:27][took 0.035003 secs] +[<<][56cedda110c00950908743][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.071007 secs] +[>>][56cedda122547331869934][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:29] +[<<][56cedda122547331869934][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.008001 secs] +[<<][56cedda138cb0545813448][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.09701 secs] +[>>][56cedda150b8a322749200][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:29] +[<<][56cedda150b8a322749200][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.026003 secs] +[<<][56cedda13b3c1444409010][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.141014 secs] +[>>][56cedda15e268103181199][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:29] +[<<][56cedda15e268103181199][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:29][16/Feb/25 10:55:29][took 0.040004 secs] +[<<][56cedda2a53a1318108984][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:30][16/Feb/25 10:55:30][took 0.079008 secs] +[>>][56cedda2b8c29881801976][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:30] + [16/Feb/25 10:55:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 10:55:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 10:55:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:55:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4103 + [16/Feb/25 10:55:30][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedda2b8c29881801976][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:30][16/Feb/25 10:55:30][took 0.032003 secs] +[<<][56cedda59c059701613073][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:33][16/Feb/25 10:55:33][took 0.076008 secs] +[>>][56cedda5ae941865688227][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:33] + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4148 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cedda5ae941865688227][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:33][16/Feb/25 10:55:33][took 0.046004 secs] +[<<][56ceddac99c04164075894][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.070007 secs] +[>>][56ceddacab163888398991][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:40] +[<<][56ceddacab163888398991][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.0060009999999999 secs] +[<<][56ceddacbf5a3620514095][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.09401 secs] +[>>][56ceddacd64dd207500529][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:40] +[<<][56ceddacd64dd207500529][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.026003 secs] +[<<][56ceddacc380d858532683][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.125013 secs] +[>>][56ceddace244a451116040][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:40] +[<<][56ceddace244a451116040][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:40][16/Feb/25 10:55:40][took 0.036003 secs] +[<<][56ceddae6741f693308616][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:42][16/Feb/25 10:55:42][took 0.086009 secs] +[>>][56ceddae7c800386823407][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:42] + [16/Feb/25 10:55:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 10:55:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 10:55:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:55:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4103 + [16/Feb/25 10:55:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceddae7c800386823407][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:55:42][16/Feb/25 10:55:42][took 0.033003 secs] +[<<][56ceddafa83ae268274044][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:43][16/Feb/25 10:55:43][took 0.074007 secs] +[>>][56ceddafba4c5622998066][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:43] + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4170 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4170 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4170 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4170 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4170 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:55:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceddafba4c5622998066][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:55:43][16/Feb/25 10:55:43][took 0.044005 secs] +[<<][56ceddb1bb916024923707][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:45][16/Feb/25 10:55:45][took 0.064006 secs] +[>>][56ceddb1cb704029960661][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:45] +[<<][56ceddb1cb704029960661][DEFAULT][/new_pull/index.php][16/Feb/25 10:55:45][16/Feb/25 10:55:45][took 0.0050009999999999 secs] +[<<][56ceddb1de3d4079778960][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:45][16/Feb/25 10:55:46][took 0.09801 secs] +[>>][56ceddb20206e216720018][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:46] +[<<][56ceddb20206e216720018][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:55:46][16/Feb/25 10:55:46][took 0.033003 secs] +[<<][56ceddb1dfb45226666092][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:45][16/Feb/25 10:55:46][took 0.157015 secs] +[>>][56ceddb212244793411589][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:46] +[<<][56ceddb212244793411589][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:55:46][16/Feb/25 10:55:46][took 0.029002 secs] +[<<][56ceddcf0377a010228022][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:15][16/Feb/25 10:56:15][took 0.073007 secs] +[>>][56ceddcf15892183879753][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:15] + [16/Feb/25 10:56:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 10:56:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 10:56:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:56:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4102 + [16/Feb/25 10:56:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceddcf15892183879753][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:15][16/Feb/25 10:56:15][took 0.033003 secs] +[<<][56ceddd14dfc9678282484][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:17][16/Feb/25 10:56:17][took 0.085008 secs] +[>>][56ceddd162bd9525579739][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:17] + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4147 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:17][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceddd162bd9525579739][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:17][16/Feb/25 10:56:17][took 0.044005 secs] +[<<][56cedddd522fa363928065][DEFAULT][/new_pull/index.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.064007 secs] +[>>][56cedddd620e9490191117][DEFAULT][/new_pull/index.php][16/Feb/25 10:56:29] +[<<][56cedddd620e9490191117][DEFAULT][/new_pull/index.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.0059999999999999 secs] +[<<][56cedddd78852311953202][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.090009 secs] +[>>][56cedddd8ebd3183812829][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:56:29] +[<<][56cedddd8ebd3183812829][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.026003 secs] +[<<][56cedddd774c9494671551][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.146015 secs] +[>>][56cedddd9af28229713306][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:56:29] +[<<][56cedddd9af28229713306][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 10:56:29][16/Feb/25 10:56:29][took 0.052005 secs] +[<<][56cedddf24938441541922][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:31][16/Feb/25 10:56:31][took 0.076007 secs] +[>>][56cedddf379ef419029578][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:31] + [16/Feb/25 10:56:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 10:56:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 10:56:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:56:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4102 + [16/Feb/25 10:56:31][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedddf379ef419029578][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:31][16/Feb/25 10:56:31][took 0.033004 secs] +[<<][56cedde36cf25286200842][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:35][16/Feb/25 10:56:35][took 0.075008 secs] +[>>][56cedde37f80d058400884][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:35] + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4147 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cedde37f80d058400884][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:35][16/Feb/25 10:56:35][took 0.046004 secs] +[<<][56cedde7f3174907629255][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:39][16/Feb/25 10:56:40][took 0.083008 secs] +[>>][56cedde81375c209683926][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:40] + [16/Feb/25 10:56:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 10:56:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 10:56:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4102 + [16/Feb/25 10:56:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cedde81375c209683926][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 10:56:40][16/Feb/25 10:56:40][took 0.031004 secs] +[<<][56ceddeb7a923163411772][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:43][16/Feb/25 10:56:43][took 0.072007 secs] +[>>][56ceddeb8c652841588762][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:43] + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 10:56:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceddeb8c652841588762][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 10:56:43][16/Feb/25 10:56:43][took 0.054005 secs] +[<<][56ceee54c8b99807606198][DEFAULT][/new_pull/index.php][16/Feb/25 12:06:44][16/Feb/25 12:06:44][took 0.079008 secs] +[>>][56ceee54dc809872635082][DEFAULT][/new_pull/index.php][16/Feb/25 12:06:44] +[<<][56ceee54dc809872635082][DEFAULT][/new_pull/index.php][16/Feb/25 12:06:44][16/Feb/25 12:06:44][took 0.006001 secs] +[<<][56ceee55000bb524213130][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:06:45][16/Feb/25 12:06:45][took 0.097009 secs] +[>>][56ceee5517bac317817008][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:06:45] +[<<][56ceee5517bac317817008][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:06:45][16/Feb/25 12:06:45][took 0.027003 secs] +[<<][56ceee5503b54289856259][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:06:45][16/Feb/25 12:06:45][took 0.132014 secs] +[>>][56ceee5524ea2406301419][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:06:45] +[<<][56ceee5524ea2406301419][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:06:45][16/Feb/25 12:06:45][took 0.073007 secs] +[<<][56ceee56d2c8d164515183][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:06:46][16/Feb/25 12:06:46][took 0.083008 secs] +[>>][56ceee56e70cd573398446][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:06:46] + [16/Feb/25 12:06:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:06:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:06:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:06:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4102 + [16/Feb/25 12:06:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceee56e70cd573398446][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:06:46][16/Feb/25 12:06:46][took 0.032004 secs] +[<<][56ceee5b984e9186168119][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:06:51][16/Feb/25 12:06:51][took 0.073007 secs] +[>>][56ceee5baa218264571513][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:06:51] + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4147 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:06:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Status - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceee5baa218264571513][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:06:51][16/Feb/25 12:06:51][took 0.067007 secs] +[<<][56ceee64d2e1d029727996][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:00][16/Feb/25 12:07:00][took 0.073007 secs] +[>>][56ceee64e531c486550987][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:00] + [16/Feb/25 12:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4016 + [16/Feb/25 12:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:07:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceee64e531c486550987][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:00][16/Feb/25 12:07:00][took 0.036004 secs] +[<<][56ceee6d960f8843204507][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:09][16/Feb/25 12:07:09][took 0.075007 secs] +[>>][56ceee6da8dc8868272692][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:09] + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:09][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceee6da8dc8868272692][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:09][16/Feb/25 12:07:09][took 0.050005 secs] +[<<][56ceee6fdda65708081123][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:11][16/Feb/25 12:07:11][took 0.071007 secs] +[>>][56ceee6fef794957285237][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:11] + [16/Feb/25 12:07:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:07:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:07:12][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceee6fef794957285237][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:11][16/Feb/25 12:07:12][took 0.028003 secs] +[<<][56ceee84216c4705269463][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:32][16/Feb/25 12:07:32][took 0.074007 secs] +[>>][56ceee8433bc3010950215][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:32] + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceee8433bc3010950215][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:32][16/Feb/25 12:07:32][took 0.054006 secs] +[<<][56ceee8e7a0e0494194543][DEFAULT][/new_pull/index.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.059006 secs] +[>>][56ceee8e88f2e878684449][DEFAULT][/new_pull/index.php][16/Feb/25 12:07:42] +[<<][56ceee8e88f2e878684449][DEFAULT][/new_pull/index.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.0080009999999999 secs] +[<<][56ceee8ea15d8926658729][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.09901 secs] +[>>][56ceee8eb9c82503332223][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:07:42] +[<<][56ceee8eb9c82503332223][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.031003 secs] +[<<][56ceee8ea1da8865268321][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.157016 secs] +[>>][56ceee8ec8ad0261914173][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:07:42] +[<<][56ceee8ec8ad0261914173][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:07:42][16/Feb/25 12:07:42][took 0.041004 secs] +[<<][56ceee90897c6662063938][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:44][16/Feb/25 12:07:44][took 0.072008 secs] +[>>][56ceee909b8de853373701][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:44] + [16/Feb/25 12:07:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:07:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:07:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:07:44][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceee909b8de853373701][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:07:44][16/Feb/25 12:07:44][took 0.031003 secs] +[<<][56ceee92d0d4c584205941][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:46][16/Feb/25 12:07:46][took 0.071007 secs] +[>>][56ceee92e2693083455842][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:46] + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4169 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: name - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4168 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:07:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: SE Prozess - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceee92e2693083455842][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:07:46][16/Feb/25 12:07:46][took 0.059006 secs] +[<<][56ceef15c4a59624540973][DEFAULT][/new_pull/index.php][16/Feb/25 12:09:57][16/Feb/25 12:09:57][took 0.073008 secs] +[>>][56ceef15d6b71117509193][DEFAULT][/new_pull/index.php][16/Feb/25 12:09:57] +[<<][56ceef15d6b71117509193][DEFAULT][/new_pull/index.php][16/Feb/25 12:09:57][16/Feb/25 12:09:57][took 0.007 secs] +[<<][56ceef15eee33476198788][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:09:57][16/Feb/25 12:09:58][took 0.096009 secs] +[>>][56ceef16126e4288948899][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:09:58] +[<<][56ceef16126e4288948899][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:09:58][16/Feb/25 12:09:58][took 0.025003 secs] +[<<][56ceef15f386c578716866][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:09:57][16/Feb/25 12:09:58][took 0.138013 secs] +[>>][56ceef162191a679551586][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:09:58] +[<<][56ceef162191a679551586][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:09:58][16/Feb/25 12:09:58][took 0.045004 secs] +[<<][56ceef1768e3c988691563][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:09:59][16/Feb/25 12:09:59][took 0.077007 secs] +[>>][56ceef177bef3349981152][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:09:59] + [16/Feb/25 12:09:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:09:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:09:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:09:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceef177bef3349981152][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:09:59][16/Feb/25 12:09:59][took 0.033004 secs] +[<<][56ceef19809f5081145237][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:01][16/Feb/25 12:10:01][took 0.084009 secs] +[>>][56ceef1995606917380813][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:01] + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:01][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceef1995606917380813][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:01][16/Feb/25 12:10:01][took 0.039004 secs] +[<<][56ceef21b6c73421126158][DEFAULT][/new_pull/index.php][16/Feb/25 12:10:09][16/Feb/25 12:10:09][took 0.059005 secs] +[>>][56ceef21c5ac2693192815][DEFAULT][/new_pull/index.php][16/Feb/25 12:10:09] +[<<][56ceef21c5ac2693192815][DEFAULT][/new_pull/index.php][16/Feb/25 12:10:09][16/Feb/25 12:10:09][took 0.006 secs] +[<<][56ceef21db28a903036149][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:10:09][16/Feb/25 12:10:09][took 0.081009 secs] +[>>][56ceef21ef2e3189054500][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:10:09] +[<<][56ceef21ef2e3189054500][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:10:09][16/Feb/25 12:10:10][took 0.025002 secs] +[<<][56ceef21de554903063270][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:10:09][16/Feb/25 12:10:10][took 0.119012 secs] +[>>][56ceef2207bc8798793832][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:10:10] +[<<][56ceef2207bc8798793832][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:10:10][16/Feb/25 12:10:10][took 0.038004 secs] +[<<][56ceef23ba7d5397265820][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:11][16/Feb/25 12:10:11][took 0.079008 secs] +[>>][56ceef23ce445278566060][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:11] + [16/Feb/25 12:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:10:11][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceef23ce445278566060][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:11][16/Feb/25 12:10:11][took 0.029003 secs] +[<<][56ceef2608140567691683][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:14][16/Feb/25 12:10:14][took 0.084008 secs] +[>>][56ceef261cd50990592035][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:14] + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 59 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:10:14][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56ceef261cd50990592035][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:10:14][16/Feb/25 12:10:14][took 0.046005 secs] +[<<][56ceef391e845663723627][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:33][16/Feb/25 12:10:33][took 0.067007 secs] +[>>][56ceef392f5d4791296076][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:33] + [16/Feb/25 12:10:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:10:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:10:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56ceef392f5d4791296076][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:10:33][16/Feb/25 12:10:33][took 0.028003 secs] +[<<][56cef109506c5636154506][DEFAULT][/new_pull/index.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.062006 secs] +[>>][56cef109600cb293644361][DEFAULT][/new_pull/index.php][16/Feb/25 12:18:17] +[<<][56cef109600cb293644361][DEFAULT][/new_pull/index.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.006001 secs] +[<<][56cef10973953937915293][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.087009 secs] +[>>][56cef1098911c268100035][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:18:17] +[<<][56cef1098911c268100035][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.032003 secs] +[<<][56cef1097b26e627151597][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.114012 secs] +[>>][56cef109973b2261353047][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:18:17] +[<<][56cef109973b2261353047][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:18:17][16/Feb/25 12:18:17][took 0.059006 secs] +[<<][56cef10b9c29c628601799][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:18:19][16/Feb/25 12:18:19][took 0.081008 secs] +[>>][56cef10bb02f4443296574][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:18:19] + [16/Feb/25 12:18:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:18:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:18:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:18:19][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef10bb02f4443296574][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:18:19][16/Feb/25 12:18:19][took 0.034003 secs] +[<<][56cef122216bd006231912][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:18:42][16/Feb/25 12:18:42][took 0.072007 secs] +[>>][56cef122337d5387319627][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:18:42] + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:18:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef122337d5387319627][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:18:42][16/Feb/25 12:18:42][took 0.048004 secs] +[<<][56cef1e1641a3143165262][DEFAULT][/new_pull/index.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.064006 secs] +[>>][56cef1e173f91355853551][DEFAULT][/new_pull/index.php][16/Feb/25 12:21:53] +[<<][56cef1e173f91355853551][DEFAULT][/new_pull/index.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.006001 secs] +[<<][56cef1e18d5db865452932][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.091009 secs] +[>>][56cef1e1a3d45077210898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:21:53] +[<<][56cef1e1a3d45077210898][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.024002 secs] +[<<][56cef1e18ddac591710552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.140014 secs] +[>>][56cef1e1b086a983707482][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:21:53] +[<<][56cef1e1b086a983707482][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:21:53][16/Feb/25 12:21:53][took 0.054005 secs] +[<<][56cef1e381737467139972][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:21:55][16/Feb/25 12:21:55][took 0.072007 secs] +[>>][56cef1e39384e259423475][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:21:55] + [16/Feb/25 12:21:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:21:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:21:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:21:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef1e39384e259423475][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:21:55][16/Feb/25 12:21:55][took 0.028003 secs] +[<<][56cef1edca364888815821][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:05][16/Feb/25 12:22:05][took 0.074008 secs] +[>>][56cef1eddc47c087175367][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:05] + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef1eddc47c087175367][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:05][16/Feb/25 12:22:05][took 0.043004 secs] +[<<][56cef1f0c0c34692667818][DEFAULT][/new_pull/index.php][16/Feb/25 12:22:08][16/Feb/25 12:22:08][took 0.069007 secs] +[>>][56cef1f0d1dab712554941][DEFAULT][/new_pull/index.php][16/Feb/25 12:22:08] +[<<][56cef1f0d1dab712554941][DEFAULT][/new_pull/index.php][16/Feb/25 12:22:08][16/Feb/25 12:22:08][took 0.006001 secs] +[<<][56cef1f0e812c301757015][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:22:08][16/Feb/25 12:22:09][took 0.10601 secs] +[>>][56cef1f10e4d7211216719][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:22:09] +[<<][56cef1f10e4d7211216719][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:22:09][16/Feb/25 12:22:09][took 0.023003 secs] +[<<][56cef1f0e8ce5654036929][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:22:08][16/Feb/25 12:22:09][took 0.151015 secs] +[>>][56cef1f119c74474194706][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:22:09] +[<<][56cef1f119c74474194706][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:22:09][16/Feb/25 12:22:09][took 0.039004 secs] +[<<][56cef1f2cdff2553194438][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:22:10][16/Feb/25 12:22:10][took 0.073007 secs] +[>>][56cef1f2e04f1457595162][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:22:10] + [16/Feb/25 12:22:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:22:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:22:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:22:10][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef1f2e04f1457595162][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:22:10][16/Feb/25 12:22:10][took 0.028003 secs] +[<<][56cef1f56552b201430308][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:13][16/Feb/25 12:22:13][took 0.073007 secs] +[>>][56cef1f577a2a914215234][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:13] + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:22:13][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef1f577a2a914215234][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:22:13][16/Feb/25 12:22:13][took 0.048005 secs] +[<<][56cef231d98ba602981981][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:13][16/Feb/25 12:23:13][took 0.059006 secs] +[>>][56cef231e8320021116820][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:13] +[<<][56cef231e8320021116820][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:13][16/Feb/25 12:23:13][took 0.005 secs] +[<<][56cef2320b401251720245][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:14][16/Feb/25 12:23:14][took 0.088009 secs] +[>>][56cef23220bca154491561][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:14] +[<<][56cef23220bca154491561][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:14][16/Feb/25 12:23:14][took 0.028003 secs] +[<<][56cef2320ac31718178137][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:14][16/Feb/25 12:23:14][took 0.143014 secs] +[>>][56cef2322dec0457261525][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:14] +[<<][56cef2322dec0457261525][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:14][16/Feb/25 12:23:14][took 0.038003 secs] +[<<][56cef23389439449190262][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:15][16/Feb/25 12:23:15][took 0.09501 secs] +[>>][56cef233a0f2b224383021][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:15] + [16/Feb/25 12:23:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:23:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:23:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:23:15][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef233a0f2b224383021][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:15][16/Feb/25 12:23:15][took 0.029003 secs] +[<<][56cef23975251262745402][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:21][16/Feb/25 12:23:21][took 0.071007 secs] +[>>][56cef23986b98411763446][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:21] + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:21][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef23986b98411763446][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:21][16/Feb/25 12:23:21][took 0.038004 secs] +[<<][56cef23cb04e5303613468][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:24][16/Feb/25 12:23:24][took 0.073007 secs] +[>>][56cef23cc2214902238090][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:24] + [16/Feb/25 12:23:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:23:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:23:24][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef23cc2214902238090][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:24][16/Feb/25 12:23:24][took 0.028003 secs] +[<<][56cef23e2cfe7694215363][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:26][16/Feb/25 12:23:26][took 0.071007 secs] +[>>][56cef23e3ed16478197105][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:26] + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:23:26][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef23e3ed16478197105][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:23:26][16/Feb/25 12:23:26][took 0.043005 secs] +[<<][56cef24018c6f830088823][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:28][16/Feb/25 12:23:28][took 0.074007 secs] +[>>][56cef2402b556018279521][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:28] + [16/Feb/25 12:23:28][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:23:28][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:23:28][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef2402b556018279521][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:23:28][16/Feb/25 12:23:28][took 0.028003 secs] +[<<][56cef256c5b1d655818793][DEFAULT][/new_pull/logout.php][16/Feb/25 12:23:50][16/Feb/25 12:23:50][took 0.059006 secs] +[>>][56cef256d4583721160869][DEFAULT][/new_pull/logout.php][16/Feb/25 12:23:50] + [16/Feb/25 12:23:50][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Logout of 'admin' + [16/Feb/25 12:24:15][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'admin' from '::1' succeeded +[<<][56cef26fab33e358319347][DEFAULT][/new_pull/login.php][16/Feb/25 12:24:15][16/Feb/25 12:24:15][took 0.014002 secs] +[<<][56cef26fc4d71040973993][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:15][16/Feb/25 12:24:15][took 0.077007 secs] +[>>][56cef26fd7e29489638707][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:15] +[<<][56cef26fd7e29489638707][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:15][16/Feb/25 12:24:15][took 0.007 secs] +[<<][56cef26fef14a031278950][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:15][16/Feb/25 12:24:16][took 0.10201 secs] +[>>][56cef27014554951970341][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:16] +[<<][56cef27014554951970341][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:16][16/Feb/25 12:24:16][took 0.027002 secs] +[<<][56cef26ff202b313372390][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:15][16/Feb/25 12:24:16][took 0.139014 secs] +[>>][56cef270204c1803566730][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:16] +[<<][56cef270204c1803566730][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:16][16/Feb/25 12:24:16][took 0.038004 secs] +[<<][56cef27350b71596838234][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:19][16/Feb/25 12:24:19][took 0.064007 secs] +[>>][56cef27360960103913952][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:19] +[<<][56cef27360960103913952][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:19][16/Feb/25 12:24:19][took 0.014001 secs] +[<<][56cef27895ef9630725316][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:24][16/Feb/25 12:24:24][took 0.064007 secs] +[>>][56cef278a5900382157416][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:24] +[<<][56cef278a5900382157416][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:24][16/Feb/25 12:24:24][took 0.021002 secs] +[<<][56cef27d4c51f998997373][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:29][16/Feb/25 12:24:29][took 0.064007 secs] +[>>][56cef27d5bf26121719572][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:29] + [16/Feb/25 12:24:29][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was saved +[<<][56cef27d5bf26121719572][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:29][16/Feb/25 12:24:29][took 0.026002 secs] +[<<][56cef27d69603531812564][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:29][16/Feb/25 12:24:29][took 0.068007 secs] +[>>][56cef27d7a392055730343][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:29] +[<<][56cef27d7a392055730343][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:29][16/Feb/25 12:24:29][took 0.014001 secs] +[<<][56cef27f429a3116962589][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.064007 secs] +[>>][56cef27f52792794088749][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:31] +[<<][56cef27f52792794088749][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.005 secs] +[<<][56cef27f6ae3c307473228][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.085008 secs] +[>>][56cef27f7fe34414327491][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:31] +[<<][56cef27f7fe34414327491][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.027003 secs] +[<<][56cef27f6d165483801805][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.125012 secs] +[>>][56cef27f8bda1706994418][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:31] +[<<][56cef27f8bda1706994418][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:31][16/Feb/25 12:24:31][took 0.037004 secs] +[<<][56cef28223e93695502303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:24:34][16/Feb/25 12:24:34][took 0.071007 secs] +[>>][56cef282353f2112303350][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:24:34] + [16/Feb/25 12:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:24:34][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef282353f2112303350][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:24:34][16/Feb/25 12:24:34][took 0.030003 secs] +[<<][56cef286370da427153264][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:24:38][16/Feb/25 12:24:38][took 0.070007 secs] +[>>][56cef2864863a366461411][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:24:38] + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 + [16/Feb/25 12:24:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: field_value - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 76 +[<<][56cef2864863a366461411][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:24:38][16/Feb/25 12:24:38][took 0.043004 secs] +[<<][56cef288dab15276347135][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:40][16/Feb/25 12:24:40][took 0.066006 secs] +[>>][56cef288eb4bc665791764][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:40] +[<<][56cef288eb4bc665791764][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:40][16/Feb/25 12:24:40][took 0.006001 secs] +[<<][56cef2890f53e677727697][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:41][16/Feb/25 12:24:41][took 0.074008 secs] +[>>][56cef28921e26259838634][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:41] +[<<][56cef28921e26259838634][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:41][16/Feb/25 12:24:41][took 0.029003 secs] +[<<][56cef2890ddce121374495][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:41][16/Feb/25 12:24:41][took 0.139013 secs] +[>>][56cef289300bc907883784][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:41] +[<<][56cef289300bc907883784][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:41][16/Feb/25 12:24:41][took 0.027002 secs] +[<<][56cef293b1358891706046][DEFAULT][/new_pull/lib/usermanagement/userInfo.php][16/Feb/25 12:24:51][16/Feb/25 12:24:51][took 0.062007 secs] +[>>][56cef293c0977576121212][DEFAULT][/new_pull/lib/usermanagement/userInfo.php][16/Feb/25 12:24:51] +[<<][56cef293c0977576121212][DEFAULT][/new_pull/lib/usermanagement/userInfo.php][16/Feb/25 12:24:51][16/Feb/25 12:24:52][took 0.249025 secs] +[<<][56cef2959915e505057335][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.074007 secs] +[>>][56cef295ab65e700970981][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:53] +[<<][56cef295ab65e700970981][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.006001 secs] +[<<][56cef295c0e27481607395][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.09901 secs] +[>>][56cef295d94d1133079041][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:53] +[<<][56cef295d94d1133079041][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.025002 secs] +[<<][56cef295c96e2289217900][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.110011 secs] +[>>][56cef295e4c6d228931178][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:53] +[<<][56cef295e4c6d228931178][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:53][16/Feb/25 12:24:53][took 0.035004 secs] +[<<][56cef29750211090698994][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:55][16/Feb/25 12:24:55][took 0.068006 secs] +[>>][56cef29760bb7332769617][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:55] +[<<][56cef29760bb7332769617][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:24:55][16/Feb/25 12:24:55][took 0.014002 secs] +[<<][56cef298e22a0318119447][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:56][16/Feb/25 12:24:56][took 0.068007 secs] +[>>][56cef298f2c47054354201][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:56] + [16/Feb/25 12:24:57][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'action_create_user' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:57][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'action_edit_user' is not localized for locale 'de_DE' - using en_GB +[<<][56cef298f2c47054354201][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:24:56][16/Feb/25 12:24:57][took 0.022002 secs] +[<<][56cef2a0e25c0195910924][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:25:04][16/Feb/25 12:25:04][took 0.069007 secs] +[>>][56cef2a0f334f097373616][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:25:04] + [16/Feb/25 12:25:05][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + User 'admin' was saved +[<<][56cef2a0f334f097373616][DEFAULT][/new_pull/lib/usermanagement/usersEdit.php][16/Feb/25 12:25:04][16/Feb/25 12:25:05][took 0.026003 secs] +[<<][56cef2a10d3a5280266846][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:25:05][16/Feb/25 12:25:05][took 0.062006 secs] +[>>][56cef2a11c5db096073352][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:25:05] +[<<][56cef2a11c5db096073352][DEFAULT][/new_pull/lib/usermanagement/usersView.php][16/Feb/25 12:25:05][16/Feb/25 12:25:05][took 0.015002 secs] +[<<][56cef2a27023a852496319][DEFAULT][/new_pull/index.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.065006 secs] +[>>][56cef2a280410836153802][DEFAULT][/new_pull/index.php][16/Feb/25 12:25:06] +[<<][56cef2a280410836153802][DEFAULT][/new_pull/index.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.005001 secs] +[<<][56cef2a296791033736414][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.083009 secs] +[>>][56cef2a2aabd2956066209][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:25:06] +[<<][56cef2a2aabd2956066209][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.026002 secs] +[<<][56cef2a29b5b3610765483][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.111011 secs] +[>>][56cef2a2b6756611016739][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:25:06] +[<<][56cef2a2b6756611016739][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:25:06][16/Feb/25 12:25:06][took 0.041005 secs] +[<<][56cef47ea7b88590820567][DEFAULT][/new_pull/index.php][16/Feb/25 12:33:02][16/Feb/25 12:33:02][took 0.063994 secs] +[>>][56cef47eb796a564510270][DEFAULT][/new_pull/index.php][16/Feb/25 12:33:02] +[<<][56cef47eb796a564510270][DEFAULT][/new_pull/index.php][16/Feb/25 12:33:02][16/Feb/25 12:33:02][took 0.005999 secs] +[<<][56cef47ecdcd8808492107][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:33:02][16/Feb/25 12:33:02][took 0.092991 secs] +[>>][56cef47ee4fe7442444709][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:33:02] +[<<][56cef47ee4fe7442444709][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:33:02][16/Feb/25 12:33:02][took 0.025997 secs] +[<<][56cef47ed2327929269987][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:33:02][16/Feb/25 12:33:02][took 0.125987 secs] +[>>][56cef47ef171a942154368][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:33:02] +[<<][56cef47ef171a942154368][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:33:02][16/Feb/25 12:33:03][took 0.055994 secs] +[<<][56cef48042da1596883276][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:33:04][16/Feb/25 12:33:04][took 0.082992 secs] +[>>][56cef480575b9078348007][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:33:04] + [16/Feb/25 12:33:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:33:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:33:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:33:04][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef480575b9078348007][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:33:04][16/Feb/25 12:33:04][took 0.029997 secs] +[<<][56cef482073d2743656444][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:33:06][16/Feb/25 12:33:06][took 0.072992 secs] +[>>][56cef482194da884412208][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:33:06] + [16/Feb/25 12:33:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 +[<<][56cef482194da884412208][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:33:06][16/Feb/25 12:33:06][took 0.071993 secs] +[<<][56cef4f626eea397869832][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.061 secs] +[>>][56cef4f636502023234300][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:02] +[<<][56cef4f636502023234300][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.008 secs] +[<<][56cef4f64c87a476901792][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.081 secs] +[>>][56cef4f6608ca507409059][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:02] +[<<][56cef4f6608ca507409059][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.033 secs] +[<<][56cef4f650312557195905][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.122 secs] +[>>][56cef4f66e38a450326962][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:02] +[<<][56cef4f66e38a450326962][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:02][16/Feb/25 12:35:02][took 0.051 secs] +[<<][56cef4f7d4c2a152885886][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:03][16/Feb/25 12:35:03][took 0.066 secs] +[>>][56cef4f7e51e2530079311][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:03] + [16/Feb/25 12:35:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:35:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:35:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:35:03][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef4f7e51e2530079311][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:03][16/Feb/25 12:35:03][took 0.038 secs] +[<<][56cef4f9be4ca087512955][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:05][16/Feb/25 12:35:05][took 0.087 secs] +[>>][56cef4f9d4072066734032][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:05] + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Not testable - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Not testable - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef4f9d4072066734032][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:05][16/Feb/25 12:35:05][took 0.089 secs] +[<<][56cef51894cba824802776][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.064 secs] +[>>][56cef518a4aa2409326448][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:36] +[<<][56cef518a4aa2409326448][DEFAULT][/new_pull/index.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.006 secs] +[<<][56cef518ba262490941990][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.077 secs] +[>>][56cef518cd312915190451][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:36] +[<<][56cef518cd312915190451][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.024 secs] +[<<][56cef518bb9d2619838192][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.118 secs] +[>>][56cef518d8e92503295985][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:36] +[<<][56cef518d8e92503295985][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:35:36][16/Feb/25 12:35:36][took 0.052 secs] +[<<][56cef51a0dc92243463061][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:38][16/Feb/25 12:35:38][took 0.095 secs] +[>>][56cef51a2577a513190730][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:38] + [16/Feb/25 12:35:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:35:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:35:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:35:38][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef51a2577a513190730][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:38][16/Feb/25 12:35:38][took 0.036 secs] +[<<][56cef51bd5fb2833373292][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:39][16/Feb/25 12:35:39][took 0.069 secs] +[>>][56cef51be7122414054981][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:39] + [16/Feb/25 12:35:39][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:35:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef51be7122414054981][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:39][16/Feb/25 12:35:40][took 0.077 secs] +[<<][56cef51e55cea531137972][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:42][16/Feb/25 12:35:42][took 0.077 secs] +[>>][56cef51e68d9a220351879][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:42] + [16/Feb/25 12:35:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:35:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:35:42][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef51e68d9a220351879][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:42][16/Feb/25 12:35:42][took 0.03 secs] +[<<][56cef5226f712858352265][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:46][16/Feb/25 12:35:46][took 0.075 secs] +[>>][56cef52281c0a159660157][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:46] + [16/Feb/25 12:35:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:35:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef52281c0a159660157][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:46][16/Feb/25 12:35:46][took 0.042 secs] +[<<][56cef523d57e2440088124][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:47][16/Feb/25 12:35:47][took 0.073 secs] +[>>][56cef523e78f2099116214][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:47] + [16/Feb/25 12:35:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:35:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:35:47][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef523e78f2099116214][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:47][16/Feb/25 12:35:47][took 0.027 secs] +[<<][56cef525d01f2523256031][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:49][16/Feb/25 12:35:49][took 0.072 secs] +[>>][56cef525e1b32423183848][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:49] + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Not testable - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Not testable - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:49][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef525e1b32423183848][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:49][16/Feb/25 12:35:49][took 0.043 secs] +[<<][56cef52a58012423899672][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:54][16/Feb/25 12:35:54][took 0.072 secs] +[>>][56cef52a69d3a438030408][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:54] + [16/Feb/25 12:35:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:35:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4016 + [16/Feb/25 12:35:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:35:54][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef52a69d3a438030408][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:35:54][16/Feb/25 12:35:54][took 0.035 secs] +[<<][56cef52e6474a312360206][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:58][16/Feb/25 12:35:58][took 0.068 secs] +[>>][56cef52e750ea739255248][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:58] + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:35:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef52e750ea739255248][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:35:58][16/Feb/25 12:35:58][took 0.043 secs] +[<<][56cef530d2132996160804][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:00][16/Feb/25 12:36:00][took 0.075 secs] +[>>][56cef530e4dfa143676734][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:00] + [16/Feb/25 12:36:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:36:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:36:00][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef530e4dfa143676734][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:00][16/Feb/25 12:36:00][took 0.03 secs] +[<<][56cef558368ea712399636][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:40][16/Feb/25 12:36:40][took 0.069 secs] +[>>][56cef55847a5a021671749][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:40] + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Draft - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Review - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Rework - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Finish - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:40][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: Valid - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef55847a5a021671749][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:40][16/Feb/25 12:36:40][took 0.041 secs] +[<<][56cef5630fbd2383971199][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:51][16/Feb/25 12:36:51][took 0.063 secs] +[>>][56cef5631f9ba529429230][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:51] + [16/Feb/25 12:36:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:36:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4016 + [16/Feb/25 12:36:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:36:51][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef5631f9ba529429230][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:51][16/Feb/25 12:36:51][took 0.032 secs] +[<<][56cef5696a8f2066676924][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:57][16/Feb/25 12:36:57][took 0.068 secs] +[>>][56cef5697b292794899040][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:57] + [16/Feb/25 12:36:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:36:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:36:57][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef5697b292794899040][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:36:57][16/Feb/25 12:36:57][took 0.031 secs] +[<<][56cef56b27e8a332754303][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:59][16/Feb/25 12:36:59][took 0.076 secs] +[>>][56cef56b3a76a103648716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:59] + [16/Feb/25 12:36:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:36:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:36:59][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef56b3a76a103648716][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:36:59][16/Feb/25 12:36:59][took 0.027 secs] +[<<][56cef613acf72303897660][DEFAULT][/new_pull/index.php][16/Feb/25 12:39:47][16/Feb/25 12:39:47][took 0.073 secs] +[>>][56cef613bf082214989391][DEFAULT][/new_pull/index.php][16/Feb/25 12:39:47] +[<<][56cef613bf082214989391][DEFAULT][/new_pull/index.php][16/Feb/25 12:39:47][16/Feb/25 12:39:47][took 0.006 secs] +[<<][56cef613d57e2971020275][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:39:47][16/Feb/25 12:39:47][took 0.081 secs] +[>>][56cef613e944a598248977][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:39:47] +[<<][56cef613e944a598248977][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:39:47][16/Feb/25 12:39:47][took 0.033 secs] +[<<][56cef613da9ea522635417][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:39:47][16/Feb/25 12:39:48][took 0.116 secs] +[>>][56cef6140349a078424603][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:39:48] +[<<][56cef6140349a078424603][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:39:48][16/Feb/25 12:39:48][took 0.038 secs] +[<<][56cef7f3c522a019477718][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:47][16/Feb/25 12:47:47][took 0.074 secs] +[>>][56cef7f3d7722935402808][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:47] +[<<][56cef7f3d7722935402808][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:47][16/Feb/25 12:47:47][took 0.006 secs] +[<<][56cef7f3ecafa205445848][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:47][16/Feb/25 12:47:48][took 0.079 secs] +[>>][56cef7f40c522660736040][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:48] +[<<][56cef7f40c522660736040][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:48][16/Feb/25 12:47:48][took 0.029 secs] +[<<][56cef7f3f308a860873096][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:47][16/Feb/25 12:47:48][took 0.109 secs] +[>>][56cef7f419812193247069][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:48] +[<<][56cef7f419812193247069][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:48][16/Feb/25 12:47:48][took 0.059 secs] +[<<][56cef7fb6d3ea033481030][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:47:55][16/Feb/25 12:47:55][took 0.071 secs] +[>>][56cef7fb7ed2a438986664][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:47:55] + [16/Feb/25 12:47:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 12:47:55][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cef7fb7ed2a438986664][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:47:55][16/Feb/25 12:47:55][took 0.044 secs] +[<<][56cef7fca8d0a705553395][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:56][16/Feb/25 12:47:56][took 0.069 secs] +[>>][56cef7fcb9e7a365375677][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:56] +[<<][56cef7fcb9e7a365375677][DEFAULT][/new_pull/index.php][16/Feb/25 12:47:56][16/Feb/25 12:47:56][took 0.006 secs] +[<<][56cef7fcd05da172047298][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:56][16/Feb/25 12:47:56][took 0.085 secs] +[>>][56cef7fce59b2162071740][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:56] +[<<][56cef7fce59b2162071740][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:47:56][16/Feb/25 12:47:56][took 0.028 secs] +[<<][56cef7fcd38a2717856314][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:56][16/Feb/25 12:47:56][took 0.13 secs] +[>>][56cef7fcf3c42014415010][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:56] +[<<][56cef7fcf3c42014415010][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:47:56][16/Feb/25 12:47:57][took 0.043 secs] +[<<][56cef7fe122e2398782478][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:47:58][16/Feb/25 12:47:58][took 0.08 secs] +[>>][56cef7fe25f4a808091935][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:47:58] + [16/Feb/25 12:47:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:47:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:47:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:47:58][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef7fe25f4a808091935][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:47:58][16/Feb/25 12:47:58][took 0.031 secs] +[<<][56cef805393e2712707271][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:48:05][16/Feb/25 12:48:05][took 0.076 secs] +[>>][56cef8054bcc2258266909][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:48:05] + [16/Feb/25 12:48:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentCreate.php - Line 58 + [16/Feb/25 12:48:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:48:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: d - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:48:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 + [16/Feb/25 12:48:05][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined index: e - in C:\xampp\htdocs\new_pull\gui\templates_c\cfd1999bf507820c08f45d1adc1b2fcd9101dd59.file.notificationAssignmentCreate.tpl.php - Line 77 +[<<][56cef8054bcc2258266909][DEFAULT][/notificationAssignmentCreate.php][16/Feb/25 12:48:05][16/Feb/25 12:48:05][took 0.034 secs] +[<<][56cef820cf63a640202590][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:48:32][16/Feb/25 12:48:32][took 0.087 secs] +[>>][56cef820e4dfa733540078][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:48:32] + [16/Feb/25 12:48:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:48:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldId - assumed 'fieldId' - in C:\xampp\htdocs\new_pull\lib\functions\requirement_mgr.class.php - Line 4016 + [16/Feb/25 12:48:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:48:32][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef820e4dfa733540078][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:48:32][16/Feb/25 12:48:32][took 0.032 secs] +[<<][56cef82413e3a401318641][DEFAULT][/new_pull/index.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.067 secs] +[>>][56cef82424bc2043043296][DEFAULT][/new_pull/index.php][16/Feb/25 12:48:36] +[<<][56cef82424bc2043043296][DEFAULT][/new_pull/index.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.006 secs] +[<<][56cef82439bb2167642739][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.082 secs] +[>>][56cef8244dfea559134399][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:48:36] +[<<][56cef8244dfea559134399][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.027 secs] +[<<][56cef8243d262538948200][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.127 secs] +[>>][56cef8245c662052061552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:48:36] +[<<][56cef8245c662052061552][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:48:36][16/Feb/25 12:48:36][took 0.041 secs] +[<<][56cef826218fa630772130][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.071 secs] +[>>][56cef82632e52433662290][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:48:38] +[<<][56cef82632e52433662290][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.007 secs] +[<<][56cef82641c9a520349534][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.083 secs] +[>>][56cef826564ba826173918][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:48:38] +[<<][56cef826564ba826173918][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.036 secs] +[<<][56cef82644792562877062][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.144 secs] +[>>][56cef826681e2395313012][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:48:38] +[<<][56cef826681e2395313012][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.008 secs] +[<<][56cef826b0df2952097484][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.1 secs] +[>>][56cef826c9c62639728590][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38] +[<<][56cef826c9c62639728590][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.01 secs] +[<<][56cef826d6782559498737][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.071 secs] +[>>][56cef826e80c2545963849][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38] +[<<][56cef826e80c2545963849][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:48:38][16/Feb/25 12:48:38][took 0.009 secs] +[<<][56cef8282c4da011293132][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:48:40][16/Feb/25 12:48:40][took 0.068 secs] +[>>][56cef8283d262993301228][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:48:40] +[<<][56cef8283d262993301228][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:48:40][16/Feb/25 12:48:40][took 0.083 secs] +[<<][56cef84f1af82196526847][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:19][16/Feb/25 12:49:19][took 0.118 secs] +[>>][56cef84f3805a946579688][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:19] +[<<][56cef84f3805a946579688][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:19][16/Feb/25 12:49:19][took 0.055 secs] +[<<][56cef855f01aa552230139][DEFAULT][/new_pull/login.php][16/Feb/25 12:49:25][16/Feb/25 12:49:26][took 0.06 secs] +[>>][56cef8560adb2020820952][DEFAULT][/new_pull/login.php][16/Feb/25 12:49:26] +[<<][56cef8560adb2020820952][DEFAULT][/new_pull/login.php][16/Feb/25 12:49:26][16/Feb/25 12:49:26][took 0.007 secs] +[<<][56cef8561d692767639333][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:26][16/Feb/25 12:49:26][took 0.071 secs] +[>>][56cef8562efd2635736935][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:26] +[<<][56cef8562efd2635736935][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:26][16/Feb/25 12:49:26][took 0.044 secs] +[<<][56cef85da0c22110879026][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:33][16/Feb/25 12:49:33][took 0.085 secs] +[>>][56cef85db582a180773679][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:33] + [16/Feb/25 12:49:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 12:49:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/25 12:49:33][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1242 - Subquery returns more than 1 row - SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1242] + errormsg:Subquery returns more than 1 row + [16/Feb/25 12:49:33][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1052 + [16/Feb/25 12:49:34][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved +[<<][56cef85db582a180773679][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:49:33][16/Feb/25 12:49:34][took 0.758 secs] +[<<][56cef85e83f32175118961][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:49:34][16/Feb/25 12:49:34][took 0.077 secs] +[>>][56cef85e96fe2905876108][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:49:34] +[<<][56cef85e96fe2905876108][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:49:34][16/Feb/25 12:49:34][took 0.062 secs] +[<<][56cef85eef20a723287717][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:49:34][16/Feb/25 12:49:35][took 0.072 secs] +[>>][56cef85f0c90a068411157][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:49:35] +[<<][56cef85f0c90a068411157][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:49:35][16/Feb/25 12:49:35][took 0.036 secs] +[<<][56cef85f6668a215637950][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:35][16/Feb/25 12:49:35][took 0.089 secs] +[>>][56cef85f7c232917318413][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:35] +[<<][56cef85f7c232917318413][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:35][16/Feb/25 12:49:35][took 0.008 secs] +[<<][56cef8606bc7a803445787][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:36][16/Feb/25 12:49:36][took 0.065 secs] +[>>][56cef8607be4a849329341][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:36] +[<<][56cef8607be4a849329341][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:49:36][16/Feb/25 12:49:36][took 0.008 secs] +[<<][56cef89902112955998596][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:33][16/Feb/25 12:50:33][took 0.07 secs] +[>>][56cef89913282594110937][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:33] +[<<][56cef89913282594110937][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:33][16/Feb/25 12:50:33][took 0.047 secs] +[<<][56cef89e4a552231234626][DEFAULT][/new_pull/login.php][16/Feb/25 12:50:38][16/Feb/25 12:50:38][took 0.073 secs] +[>>][56cef89e5c662268525572][DEFAULT][/new_pull/login.php][16/Feb/25 12:50:38] +[<<][56cef89e5c662268525572][DEFAULT][/new_pull/login.php][16/Feb/25 12:50:38][16/Feb/25 12:50:38][took 0.0059999999999999 secs] +[<<][56cef89e689b2032997166][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:38][16/Feb/25 12:50:38][took 0.07 secs] +[>>][56cef89e79f0a331031338][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:38] +[<<][56cef89e79f0a331031338][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:38][16/Feb/25 12:50:38][took 0.047 secs] +[<<][56cef8a15f92a299644888][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:41][16/Feb/25 12:50:41][took 0.08 secs] +[>>][56cef8a173592997432676][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:41] + [16/Feb/25 12:50:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 12:50:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/25 12:50:41][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1242 - Subquery returns more than 1 row - SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login
THE MESSAGE : SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "a") ORDER BY login +Query failed: errorcode[1242] + errormsg:Subquery returns more than 1 row + [16/Feb/25 12:50:41][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1052 + [16/Feb/25 12:50:42][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved +[<<][56cef8a173592997432676][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:50:41][16/Feb/25 12:50:42][took 0.68 secs] +[<<][56cef8a22e032107564471][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:50:42][16/Feb/25 12:50:42][took 0.067 secs] +[>>][56cef8a23edba271354830][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:50:42] +[<<][56cef8a23edba271354830][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:50:42][16/Feb/25 12:50:42][took 0.062 secs] +[<<][56cef8a2948d2660756785][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:50:42][16/Feb/25 12:50:42][took 0.075 secs] +[>>][56cef8a2a71b2010824867][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:50:42] +[<<][56cef8a2a71b2010824867][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:50:42][16/Feb/25 12:50:42][took 0.049 secs] +[<<][56cef8a30ec32724122641][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43][16/Feb/25 12:50:43][took 0.065 secs] +[>>][56cef8a31ee02427681429][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43] +[<<][56cef8a31ee02427681429][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43][16/Feb/25 12:50:43][took 0.008 secs] +[<<][56cef8a32bd0a344812981][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43][16/Feb/25 12:50:43][took 0.067 secs] +[>>][56cef8a33ca92950289794][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43] +[<<][56cef8a33ca92950289794][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:50:43][16/Feb/25 12:50:43][took 0.007 secs] +[<<][56cef94c4728a911457734][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.073 secs] +[>>][56cef94c5939a440274822][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:32] +[<<][56cef94c5939a440274822][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.006 secs] +[<<][56cef94c6fafa305731902][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.088 secs] +[>>][56cef94c856a2254061458][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:32] +[<<][56cef94c856a2254061458][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.027 secs] +[<<][56cef94c73592025068213][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.126 secs] +[>>][56cef94c925aa951375912][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:32] +[<<][56cef94c925aa951375912][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:32][16/Feb/25 12:53:32][took 0.051 secs] +[<<][56cef94faac4a199530636][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:53:35][16/Feb/25 12:53:35][took 0.068 secs] +[>>][56cef94fbb5ea513583159][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:53:35] + [16/Feb/25 12:53:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:53:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:53:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:53:35][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef94fbb5ea513583159][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:53:35][16/Feb/25 12:53:35][took 0.039 secs] +[<<][56cef9537b292962340639][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.059 secs] +[>>][56cef9538990a029443556][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:39] +[<<][56cef9538990a029443556][DEFAULT][/new_pull/index.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.007 secs] +[<<][56cef9539d95a847919823][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.087 secs] +[>>][56cef953b311a409526983][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:39] +[<<][56cef953b311a409526983][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.027 secs] +[<<][56cef953a3b02425866286][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.114 secs] +[>>][56cef953bfc3a456085729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:39] +[<<][56cef953bfc3a456085729][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:53:39][16/Feb/25 12:53:39][took 0.035 secs] +[<<][56cef955086a2165597764][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.062 secs] +[>>][56cef955178d2932321468][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:53:41] +[<<][56cef955178d2932321468][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.006 secs] +[<<][56cef95526332651484241][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.088 secs] +[>>][56cef9553c2c2251196943][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:53:41] +[<<][56cef9553c2c2251196943][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.043 secs] +[<<][56cef955299e2726041890][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.155 secs] +[>>][56cef9554f75a798347597][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:53:41] +[<<][56cef9554f75a798347597][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.01 secs] +[<<][56cef95597f82154724197][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.08 secs] +[>>][56cef955abfd2459378230][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41] +[<<][56cef955abfd2459378230][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.009 secs] +[<<][56cef955bc58a465019866][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.078 secs] +[>>][56cef955cfa22585067011][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41] +[<<][56cef955cfa22585067011][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:53:41][16/Feb/25 12:53:41][took 0.0079999999999999 secs] +[<<][56cef956afe52626197547][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:53:42][16/Feb/25 12:53:42][took 0.065 secs] +[>>][56cef956c0022652200387][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:53:42] +[<<][56cef956c0022652200387][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:53:42][16/Feb/25 12:53:42][took 0.076 secs] +[<<][56cef95890e3a188439871][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:44][16/Feb/25 12:53:44][took 0.079 secs] +[>>][56cef958a46ba161073802][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:44] +[<<][56cef958a46ba161073802][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:44][16/Feb/25 12:53:44][took 0.045 secs] +[<<][56cef95cda602304804997][DEFAULT][/new_pull/login.php][16/Feb/25 12:53:48][16/Feb/25 12:53:48][took 0.071 secs] +[>>][56cef95cebf42073487751][DEFAULT][/new_pull/login.php][16/Feb/25 12:53:48] +[<<][56cef95cebf42073487751][DEFAULT][/new_pull/login.php][16/Feb/25 12:53:48][16/Feb/25 12:53:48][took 0.007 secs] +[<<][56cef95d10f5a995275513][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:49][16/Feb/25 12:53:49][took 0.075 secs] +[>>][56cef95d23452384415277][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:49] +[<<][56cef95d23452384415277][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:49][16/Feb/25 12:53:49][took 0.048 secs] +[<<][56cef9606b4aa382810852][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:52][16/Feb/25 12:53:52][took 0.075 secs] +[>>][56cef9607d9a2228390751][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:52] + [16/Feb/25 12:53:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 12:53:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 +[<<][56cef9607d9a2228390751][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:53:52][16/Feb/25 12:53:52][took 0.044 secs] +[<<][56cef99133a0a690900663][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.07 secs] +[>>][56cef99144f62235479049][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:41] +[<<][56cef99144f62235479049][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.006 secs] +[<<][56cef9915d21a031928068][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.091 secs] +[>>][56cef9917397a882978425][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:41] +[<<][56cef9917397a882978425][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.034 secs] +[<<][56cef9915ca4a295594851][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.162 secs] +[>>][56cef99184aea943520036][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:41] +[<<][56cef99184aea943520036][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:41][16/Feb/25 12:54:41][took 0.05 secs] +[<<][56cef9939d18a094343941][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:54:43][16/Feb/25 12:54:43][took 0.081 secs] +[>>][56cef993b15c2438100847][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:54:43] + [16/Feb/25 12:54:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 12:54:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 12:54:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 12:54:43][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cef993b15c2438100847][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 12:54:43][16/Feb/25 12:54:43][took 0.037 secs] +[<<][56cef9957ca02692822653][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.075 secs] +[>>][56cef9958eefa896822861][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:45] +[<<][56cef9958eefa896822861][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.006 secs] +[<<][56cef995a2392399893046][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.087 secs] +[>>][56cef995b7f3a365406036][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:45] +[<<][56cef995b7f3a365406036][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.023 secs] +[<<][56cef995a42d2355320206][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.13 secs] +[>>][56cef995c3ea2045235682][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:45] +[<<][56cef995c3ea2045235682][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:45][16/Feb/25 12:54:45][took 0.04 secs] +[<<][56cef996bbdba482424165][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:54:46][16/Feb/25 12:54:46][took 0.08 secs] +[>>][56cef996cfa22629884590][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:54:46] + [16/Feb/25 12:54:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 12:54:46][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cef996cfa22629884590][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:54:46][16/Feb/25 12:54:46][took 0.038 secs] +[<<][56cef998ac3ba375100780][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:48][16/Feb/25 12:54:48][took 0.071 secs] +[>>][56cef998bd912699242468][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:48] +[<<][56cef998bd912699242468][DEFAULT][/new_pull/index.php][16/Feb/25 12:54:48][16/Feb/25 12:54:48][took 0.009 secs] +[<<][56cef998d57e2972078855][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:48][16/Feb/25 12:54:48][took 0.082 secs] +[>>][56cef998e9c1a804304045][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:48] +[<<][56cef998e9c1a804304045][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:54:48][16/Feb/25 12:54:48][took 0.029 secs] +[<<][56cef998d57e2834142951][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:48][16/Feb/25 12:54:49][took 0.14 secs] +[>>][56cef99904052625432889][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:49] +[<<][56cef99904052625432889][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:54:49][16/Feb/25 12:54:49][took 0.031 secs] +[<<][56cef99a0b96a022791851][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.08 secs] +[>>][56cef99a1f9ba503879617][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:54:50] +[<<][56cef99a1f9ba503879617][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.007 secs] +[<<][56cef99a2e802883710844][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.081 secs] +[>>][56cef99a42c3a038317085][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:54:50] +[<<][56cef99a42c3a038317085][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.007 secs] +[<<][56cef99a2f7a2130021686][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.112 secs] +[>>][56cef99a4b4f2206727451][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:54:50] +[<<][56cef99a4b4f2206727451][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.046 secs] +[<<][56cef99aa5272676262735][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.076 secs] +[>>][56cef99ab8322478488780][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50] +[<<][56cef99ab8322478488780][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.011 secs] +[<<][56cef99ac987a332627243][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.074 secs] +[>>][56cef99adbd72061056738][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50] +[<<][56cef99adbd72061056738][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:54:50][16/Feb/25 12:54:50][took 0.008 secs] +[<<][56cef99c8c7ea416673145][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:54:52][16/Feb/25 12:54:52][took 0.069 secs] +[>>][56cef99c9d95a530724418][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:54:52] +[<<][56cef99c9d95a530724418][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:54:52][16/Feb/25 12:54:52][took 0.062 secs] +[<<][56cef99ebc972838285933][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:54][16/Feb/25 12:54:54][took 0.074 secs] +[>>][56cef99ecee6a083136742][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:54] +[<<][56cef99ecee6a083136742][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:54][16/Feb/25 12:54:54][took 0.048 secs] +[<<][56cef9a2e944a107864982][DEFAULT][/new_pull/login.php][16/Feb/25 12:54:58][16/Feb/25 12:54:59][took 0.066 secs] +[>>][56cef9a305baa246229708][DEFAULT][/new_pull/login.php][16/Feb/25 12:54:59] +[<<][56cef9a305baa246229708][DEFAULT][/new_pull/login.php][16/Feb/25 12:54:59][16/Feb/25 12:54:59][took 0.005 secs] +[<<][56cef9a30e84a873391778][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:59][16/Feb/25 12:54:59][took 0.075 secs] +[>>][56cef9a32112a566913796][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:59] +[<<][56cef9a32112a566913796][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:54:59][16/Feb/25 12:54:59][took 0.046 secs] +[<<][56cef9a6685ca747808610][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:55:02][16/Feb/25 12:55:02][took 0.072 secs] +[>>][56cef9a67a2f2810107565][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:55:02] + [16/Feb/25 12:55:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 12:55:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/25 12:55:02][ERROR][9i2hk1tkj7jp8gfsbnb2s5snd5][DATABASE] + ERROR ON exec_query() - database.class.php
1242 - Subquery returns more than 1 row - SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login
THE MESSAGE : SELECT id FROM TLusers WHERE id = (SELECT assigned_user_id FROM TLreq_notify_assignments WHERE test_project_id = 1 AND field_id = 1 AND field_value = "b") ORDER BY login +Query failed: errorcode[1242] + errormsg:Subquery returns more than 1 row + [16/Feb/25 12:55:02][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Invalid argument supplied for foreach() - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1051 + [16/Feb/25 12:55:03][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved +[<<][56cef9a67a2f2810107565][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 12:55:02][16/Feb/25 12:55:03][took 0.75 secs] +[<<][56cef9a74728a290600554][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:55:03][16/Feb/25 12:55:03][took 0.066 secs] +[>>][56cef9a75745a882447119][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:55:03] +[<<][56cef9a75745a882447119][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:55:03][16/Feb/25 12:55:03][took 0.062 secs] +[<<][56cef9a7ac7a2846878404][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:55:03][16/Feb/25 12:55:03][took 0.069 secs] +[>>][56cef9a7bdcfa156956886][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:55:03] +[<<][56cef9a7bdcfa156956886][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:55:03][16/Feb/25 12:55:03][took 0.034 secs] +[<<][56cef9a81da7a523149459][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04][16/Feb/25 12:55:04][took 0.067 secs] +[>>][56cef9a82e41a484300391][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04] +[<<][56cef9a82e41a484300391][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04][16/Feb/25 12:55:04][took 0.007 secs] +[<<][56cef9a84b8da223440075][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04][16/Feb/25 12:55:04][took 0.068 secs] +[>>][56cef9a85c662555338405][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04] +[<<][56cef9a85c662555338405][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:55:04][16/Feb/25 12:55:04][took 0.008 secs] +[<<][56cefd0ed7cf3008775959][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:34][16/Feb/25 13:09:34][took 0.077007 secs] +[>>][56cefd0eeadab276575890][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:34] +[<<][56cefd0eeadab276575890][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:34][16/Feb/25 13:09:34][took 0.006 secs] +[<<][56cefd0f0e65c018899018][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:35][16/Feb/25 13:09:35][took 0.084009 secs] +[>>][56cefd0f22e85723540444][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:35] +[<<][56cefd0f22e85723540444][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:35][16/Feb/25 13:09:35][took 0.033003 secs] +[<<][56cefd0f0fdcd836005405][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:35][16/Feb/25 13:09:35][took 0.147015 secs] +[>>][56cefd0f343e4808653565][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:35] +[<<][56cefd0f343e4808653565][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:35][16/Feb/25 13:09:35][took 0.054005 secs] +[<<][56cefd10c8b85439279761][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 13:09:36][16/Feb/25 13:09:36][took 0.077007 secs] +[>>][56cefd10dbc3c585107826][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 13:09:36] + [16/Feb/25 13:09:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_WARNING +Creating default object from empty value - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 83 + [16/Feb/25 13:09:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined offset: 1 - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 94 + [16/Feb/25 13:09:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Use of undefined constant fieldNamesForGUISize - assumed 'fieldNamesForGUISize' - in C:\xampp\htdocs\new_pull\lib\notificationassignments\notificationAssignmentConfig.php - Line 68 + [16/Feb/25 13:09:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$editorType - in C:\xampp\htdocs\new_pull\gui\templates_c\3116188dce817274fed7ab23af9e10e675475536.file.notificationAssignmentConfig.tpl.php - Line 40 +[<<][56cefd10dbc3c585107826][DEFAULT][/notificationAssignmentConfig.php][16/Feb/25 13:09:36][16/Feb/25 13:09:36][took 0.033004 secs] +[<<][56cefd12617ca392633800][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.070007 secs] +[>>][56cefd1272d29864059759][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:38] +[<<][56cefd1272d29864059759][DEFAULT][/new_pull/index.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.007001 secs] +[<<][56cefd12888da673060426][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.085009 secs] +[>>][56cefd129d8d3183039027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:38] +[<<][56cefd129d8d3183039027][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.031003 secs] +[<<][56cefd128793a800548051][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.144014 secs] +[>>][56cefd12aafb0477115059][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:38] +[<<][56cefd12aafb0477115059][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:09:38][16/Feb/25 13:09:38][took 0.035004 secs] +[<<][56cefd1428283949233069][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.071007 secs] +[>>][56cefd1439bca081899856][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:09:40] +[<<][56cefd1439bca081899856][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.007001 secs] +[<<][56cefd144a571153224785][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.075007 secs] +[>>][56cefd145ca70210749117][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:09:40] +[<<][56cefd145ca70210749117][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.007001 secs] +[<<][56cefd14491e8000782468][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.116012 secs] +[>>][56cefd1465afc736675596][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:40] +[<<][56cefd1465afc736675596][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.044004 secs] +[<<][56cefd14c1bca416678545][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.073007 secs] +[>>][56cefd14d40c9191346226][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40] +[<<][56cefd14d40c9191346226][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40][16/Feb/25 13:09:40][took 0.008001 secs] +[<<][56cefd14e61e1045895980][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:40][16/Feb/25 13:09:41][took 0.062006 secs] +[>>][56cefd15011d7908598940][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:41] +[<<][56cefd15011d7908598940][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:41][16/Feb/25 13:09:41][took 0.008001 secs] +[<<][56cefd1733b4b898168830][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:43][16/Feb/25 13:09:43][took 0.068007 secs] +[>>][56cefd17448da269414243][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:43] +[<<][56cefd17448da269414243][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:43][16/Feb/25 13:09:43][took 0.067007 secs] +[<<][56cefd19274d6321702144][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:45][16/Feb/25 13:09:45][took 0.075008 secs] +[>>][56cefd19399d6215954292][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:45] +[<<][56cefd19399d6215954292][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:45][16/Feb/25 13:09:45][took 0.048005 secs] +[<<][56cefd1d4cc1e851464155][DEFAULT][/new_pull/login.php][16/Feb/25 13:09:49][16/Feb/25 13:09:49][took 0.067006 secs] +[>>][56cefd1d5d5c4417706345][DEFAULT][/new_pull/login.php][16/Feb/25 13:09:49] +[<<][56cefd1d5d5c4417706345][DEFAULT][/new_pull/login.php][16/Feb/25 13:09:49][16/Feb/25 13:09:49][took 0.005 secs] +[<<][56cefd1d6b85a540031864][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:49][16/Feb/25 13:09:49][took 0.078008 secs] +[>>][56cefd1d7ecfa559505478][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:49] +[<<][56cefd1d7ecfa559505478][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:49][16/Feb/25 13:09:49][took 0.045005 secs] +[<<][56cefd1fef6b8852994828][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:51][16/Feb/25 13:09:52][took 0.074008 secs] +[>>][56cefd200d978837591729][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:52] + [16/Feb/25 13:09:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 13:09:52][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/25 13:09:53][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.1' was saved +[<<][56cefd200d978837591729][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:09:52][16/Feb/25 13:09:53][took 1.40214 secs] +[<<][56cefd2177957213284647][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:53][16/Feb/25 13:09:53][took 0.065007 secs] +[>>][56cefd2187b2e557545404][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:53] +[<<][56cefd2187b2e557545404][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:09:53][16/Feb/25 13:09:53][took 0.062006 secs] +[<<][56cefd21dcab1758716993][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:53][16/Feb/25 13:09:53][took 0.077007 secs] +[>>][56cefd21efb68996148948][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:53] +[<<][56cefd21efb68996148948][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:09:53][16/Feb/25 13:09:54][took 0.042005 secs] +[<<][56cefd2251463752767553][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54][16/Feb/25 13:09:54][took 0.071008 secs] +[>>][56cefd22629c3721842600][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54] +[<<][56cefd22629c3721842600][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54][16/Feb/25 13:09:54][took 0.009 secs] +[<<][56cefd227624b894742138][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54][16/Feb/25 13:09:54][took 0.062006 secs] +[>>][56cefd2285481475692463][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54] +[<<][56cefd2285481475692463][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:09:54][16/Feb/25 13:09:54][took 0.007 secs] +[<<][56cefd86dcb14251347064][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:34][16/Feb/25 13:11:34][took 0.059006 secs] +[>>][56cefd86eb962139515332][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:34] +[<<][56cefd86eb962139515332][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:34][16/Feb/25 13:11:34][took 0.006 secs] +[<<][56cefd870ee2b862366399][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:35][16/Feb/25 13:11:35][took 0.086009 secs] +[>>][56cefd87245f4961479244][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:35] +[<<][56cefd87245f4961479244][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:35][16/Feb/25 13:11:35][took 0.025003 secs] +[<<][56cefd8717acf422621787][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:35][16/Feb/25 13:11:35][took 0.09901 secs] +[>>][56cefd8730561864592236][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:35] +[<<][56cefd8730561864592236][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:35][16/Feb/25 13:11:35][took 0.043004 secs] +[<<][56cefd88d049e169157026][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 13:11:36][16/Feb/25 13:11:36][took 0.076008 secs] +[>>][56cefd88e316e808362523][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 13:11:36] + [16/Feb/25 13:11:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 13:11:36][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cefd88e316e808362523][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 13:11:36][16/Feb/25 13:11:36][took 0.038004 secs] +[<<][56cefd9133c12631612457][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.080008 secs] +[>>][56cefd9147c6a589066960][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:45] +[<<][56cefd9147c6a589066960][DEFAULT][/new_pull/index.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.006001 secs] +[<<][56cefd915d433285044934][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.089009 secs] +[>>][56cefd91733cc441578524][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:45] +[<<][56cefd91733cc441578524][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.037004 secs] +[<<][56cefd915dfec181485721][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.152015 secs] +[>>][56cefd91835a3520988919][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:45] +[<<][56cefd91835a3520988919][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 13:11:45][16/Feb/25 13:11:45][took 0.034003 secs] +[<<][56cefd9440863487934680][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.063007 secs] +[>>][56cefd944fe82258512839][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:11:48] +[<<][56cefd944fe82258512839][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.007 secs] +[<<][56cefd945fc70004050499][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.072008 secs] +[>>][56cefd94719a0530775587][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:11:48] +[<<][56cefd94719a0530775587][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.008 secs] +[<<][56cefd945f4a0875715840][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.112011 secs] +[>>][56cefd947b1fb525044935][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:11:48] +[<<][56cefd947b1fb525044935][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.046005 secs] +[<<][56cefd94d5388781018179][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.064007 secs] +[>>][56cefd94e555f503881029][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:48] +[<<][56cefd94e555f503881029][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:48][16/Feb/25 13:11:48][took 0.0070009999999999 secs] +[<<][56cefd9504f8f448968982][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:49][16/Feb/25 13:11:49][took 0.063006 secs] +[>>][56cefd9514995550208489][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:49] +[<<][56cefd9514995550208489][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:11:49][16/Feb/25 13:11:49][took 0.007001 secs] +[<<][56cefd9840ddc703183306][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:11:52][16/Feb/25 13:11:52][took 0.065006 secs] +[>>][56cefd9850bca489799872][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:11:52] +[<<][56cefd9850bca489799872][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:11:52][16/Feb/25 13:11:52][took 0.059006 secs] +[<<][56cefd9c17f1b064168975][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:11:56][16/Feb/25 13:11:56][took 0.081008 secs] +[>>][56cefd9c2bf73778179975][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:11:56] +[<<][56cefd9c2bf73778179975][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:11:56][16/Feb/25 13:11:56][took 0.044004 secs] +[<<][56cefda2e5ad7598148470][DEFAULT][/new_pull/login.php][16/Feb/25 13:12:02][16/Feb/25 13:12:03][took 0.073007 secs] +[>>][56cefda303d96187760985][DEFAULT][/new_pull/login.php][16/Feb/25 13:12:03] +[<<][56cefda303d96187760985][DEFAULT][/new_pull/login.php][16/Feb/25 13:12:03][16/Feb/25 13:12:03][took 0.004 secs] +[<<][56cefda30e97b547403745][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:03][16/Feb/25 13:12:03][took 0.080008 secs] +[>>][56cefda322203499806901][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:03] +[<<][56cefda322203499806901][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:03][16/Feb/25 13:12:03][took 0.047005 secs] +[<<][56cefda5f0017333990879][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:05][16/Feb/25 13:12:06][took 0.070007 secs] +[>>][56cefda60d336974432752][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:06] + [16/Feb/25 13:12:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1015 + [16/Feb/25 13:12:06][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_STRICT +Only variables should be passed by reference - in C:\xampp\htdocs\new_pull\lib\requirements\reqCommands.class.php - Line 1029 + [16/Feb/25 13:12:07][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Requirement '1.2' was saved +[<<][56cefda60d336974432752][DEFAULT][/new_pull/lib/requirements/reqEdit.php][16/Feb/25 13:12:06][16/Feb/25 13:12:07][took 1.381138 secs] +[<<][56cefda776f2e566736875][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:12:07][16/Feb/25 13:12:07][took 0.067006 secs] +[>>][56cefda7874ec357822668][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:12:07] +[<<][56cefda7874ec357822668][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 13:12:07][16/Feb/25 13:12:07][took 0.064007 secs] +[<<][56cefda7dacfe664425753][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:12:07][16/Feb/25 13:12:07][took 0.081008 secs] +[>>][56cefda7eed57287870750][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:12:07] +[<<][56cefda7eed57287870750][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 13:12:07][16/Feb/25 13:12:08][took 0.035003 secs] +[<<][56cefda84f6b1320521698][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08][16/Feb/25 13:12:08][took 0.074008 secs] +[>>][56cefda8617c9964982415][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08] +[<<][56cefda8617c9964982415][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08][16/Feb/25 13:12:08][took 0.007 secs] +[<<][56cefda8734f8251118346][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08][16/Feb/25 13:12:08][took 0.061006 secs] +[>>][56cefda88272e938342297][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08] +[<<][56cefda88272e938342297][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 13:12:08][16/Feb/25 13:12:08][took 0.007001 secs] diff --git a/logsuserlog2.log b/logsuserlog2.log index fd9e84b06e..f3183cc474 100644 --- a/logsuserlog2.log +++ b/logsuserlog2.log @@ -585,3 +585,78 @@ Undefined variable: target - in C:\xampp\htdocs\testlinkPrefixTest\lib\functions [>>][56cd7ed185bd0349046925][DEFAULT][/testlinkPrefixTest/logout.php][16/Feb/24 09:58:41] [16/Feb/24 09:58:41][AUDIT][4inpv8utgti1g3oaae5fpc8nl5][GUI] Logout of 'lejo' + [16/Feb/25 12:23:56][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Login for 'lejo' from '::1' succeeded +[<<][56cef25caa01a462203878][DEFAULT][/new_pull/login.php][16/Feb/25 12:23:56][16/Feb/25 12:23:56][took 0.015001 secs] +[<<][56cef25cc7cb6078970869][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:56][16/Feb/25 12:23:56][took 0.073007 secs] +[>>][56cef25cd99e5594753639][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:56] +[<<][56cef25cd99e5594753639][DEFAULT][/new_pull/index.php][16/Feb/25 12:23:56][16/Feb/25 12:23:56][took 0.003 secs] +[<<][56cef25ced26d438051403][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:56][16/Feb/25 12:23:57][took 0.094009 secs] +[>>][56cef25d10737891858842][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:57] +[<<][56cef25d10737891858842][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:23:57][16/Feb/25 12:23:57][took 0.021002 secs] +[<<][56cef25cf091f324683237][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:56][16/Feb/25 12:23:57][took 0.125012 secs] +[>>][56cef25d1b704246514968][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:57] +[<<][56cef25d1b704246514968][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:23:57][16/Feb/25 12:23:57][took 0.039003 secs] +[<<][56cef2618215e696795599][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.064006 secs] +[>>][56cef26191b64399949825][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:24:01] +[<<][56cef26191b64399949825][DEFAULT][/new_pull/lib/general/frmWorkArea.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.005 secs] +[<<][56cef261a05ca434529009][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.091009 secs] +[>>][56cef261b6d33895374451][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:24:01] + [16/Feb/25 12:24:01][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'hint_list_of_bugs' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:01][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'bugs_on_context' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:01][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'tester_works_with_settings' is not localized for locale 'de_DE' - using en_GB +[<<][56cef261b6d33895374451][DEFAULT][/lib/requirements/reqSpecListTree.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.042004 secs] +[<<][56cef261a34ab216628214][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.150015 secs] +[>>][56cef261c7eaa272233604][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:24:01] +[<<][56cef261c7eaa272233604][DEFAULT][/lib/project/project_req_spec_mgmt.php][16/Feb/25 12:24:01][16/Feb/25 12:24:01][took 0.007001 secs] +[<<][56cef2621fb61990647366][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02][16/Feb/25 12:24:02][took 0.106011 secs] +[>>][56cef26239d64224119295][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02] +[<<][56cef26239d64224119295][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02][16/Feb/25 12:24:02][took 0.008001 secs] +[<<][56cef26244948275327611][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02][16/Feb/25 12:24:02][took 0.072008 secs] +[>>][56cef26256290746234848][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02] +[<<][56cef26256290746234848][DEFAULT][/new_pull/lib/ajax/getrequirementnodes.php][16/Feb/25 12:24:02][16/Feb/25 12:24:02][took 0.005 secs] +[<<][56cef263612c0381234102][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:24:03][16/Feb/25 12:24:03][took 0.071007 secs] +[>>][56cef2637281f747601536][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:24:03] + [16/Feb/25 12:24:03][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'click_to_get_attachment' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:03][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'display_inline' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:03][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'display_ea_string' is not localized for locale 'de_DE' - using en_GB + [16/Feb/25 12:24:03][L18N][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + string 'display_inline_string' is not localized for locale 'de_DE' - using en_GB +[<<][56cef2637281f747601536][DEFAULT][/new_pull/lib/requirements/reqView.php][16/Feb/25 12:24:03][16/Feb/25 12:24:03][took 0.080008 secs] +[<<][56cef2657d8b4515053666][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.073007 secs] +[>>][56cef2658fdb3240918607][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:05] +[<<][56cef2658fdb3240918607][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.007001 secs] +[<<][56cef265a8c2d216267286][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.089009 secs] +[>>][56cef265be7de672409660][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:05] +[<<][56cef265be7de672409660][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.026003 secs] +[<<][56cef265a97e6552715256][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.138013 secs] +[>>][56cef265cb303123384918][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:05] +[<<][56cef265cb303123384918][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:05][16/Feb/25 12:24:05][took 0.038003 secs] +[<<][56cef26780c45048827376][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:24:07][16/Feb/25 12:24:07][took 0.070007 secs] +[>>][56cef267921a4564098794][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:24:07] + [16/Feb/25 12:24:07][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 52 + [16/Feb/25 12:24:07][WARNING][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + E_NOTICE +Undefined property: stdClass::$all_versions - in C:\xampp\htdocs\new_pull\lib\requirements\reqManageSubs.php - Line 136 +[<<][56cef267921a4564098794][DEFAULT][/new_pull/lib/requirements/reqManageSubs.php][16/Feb/25 12:24:07][16/Feb/25 12:24:07][took 0.035004 secs] +[<<][56cef26adbab6020283164][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:10][16/Feb/25 12:24:10][took 0.072007 secs] +[>>][56cef26aed3fd252697596][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:10] +[<<][56cef26aed3fd252697596][DEFAULT][/new_pull/index.php][16/Feb/25 12:24:10][16/Feb/25 12:24:10][took 0.004001 secs] +[<<][56cef26b108c7638289296][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:11][16/Feb/25 12:24:11][took 0.083008 secs] +[>>][56cef26b24d07496886571][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:11] +[<<][56cef26b24d07496886571][DEFAULT][/new_pull/lib/general/navBar.php][16/Feb/25 12:24:11][16/Feb/25 12:24:11][took 0.024003 secs] +[<<][56cef26b108c7526217888][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:11][16/Feb/25 12:24:11][took 0.130013 secs] +[>>][56cef26b3088c326175831][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:11] +[<<][56cef26b3088c326175831][DEFAULT][/new_pull/lib/general/mainPage.php][16/Feb/25 12:24:11][16/Feb/25 12:24:11][took 0.032003 secs] +[<<][56cef26c1a56f515431248][DEFAULT][/new_pull/logout.php][16/Feb/25 12:24:12][16/Feb/25 12:24:12][took 0.073007 secs] +[>>][56cef26c2c686553422136][DEFAULT][/new_pull/logout.php][16/Feb/25 12:24:12] + [16/Feb/25 12:24:12][AUDIT][9i2hk1tkj7jp8gfsbnb2s5snd5][GUI] + Logout of 'lejo'