Mission: modify
Source Code
- //h_log
- if ($strInput['rb_spy_report'] == "V2") {
- $this->strVersion = "s";
- if (strlen($this->strHTMLLog) > MAX_LOG_SIZE / 10) {
- LogError("objLog->CheckInput", "Uploaded spy report is too long: " . strlen($this->strHTMLLog) . "/" . MAX_LOG_SIZE / 10);
- return false;
- }
- $this->DeleteBackSplashes();
- return true;
- }
Source Code
- private function DeleteBackSplashes() {
- $this->strHTMLLog = str_replace("\\", "", $this->strHTMLLog);
- $this->strRecyclerReport = str_replace("\\", "", $this->strRecyclerReport);
- $this->strComment = str_replace("\\", "", $this->strComment);
- $this->strCleanUp = str_replace("\\", "", $this->strCleanUp);
- return true;
- }