Changeset 887
- Timestamp:
- Dec 27, 2022, 2:34:03 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HTML/BBCodeParser2.php
r815 r887 482 482 foreach ($this->_tagArray as $tag) { 483 483 $prevTag = end($newTagArray); 484 485 // TODO: why prevTag cann by type bool? 486 if (!is_array($prevTag)) continue; 487 484 488 switch ($tag['type']) { 485 489 case 0: … … 500 504 $openTags[] = $child['tag']; 501 505 } 506 502 507 if ($prevTag['type'] === 0) { 503 508 $tag['text'] = $prevTag['text'].$tag['text']; -
trunk/Packages/Common/AppModule.php
r880 r887 392 392 } 393 393 394 function LoadModules() 395 { 396 if ( method_exists($this->OnLoadModules[0], $this->OnLoadModules[1]))397 $this->OnLoadModules();394 function LoadModules(): void 395 { 396 if (is_array($this->OnLoadModules) and (count($this->OnLoadModules) == 2) and method_exists($this->OnLoadModules[0], $this->OnLoadModules[1])) 397 call_user_func($this->OnLoadModules); 398 398 else $this->LoadModulesFromDir($this->ModulesDir); 399 399 } -
trunk/Packages/Common/Error.php
r880 r887 3 3 class ErrorHandler 4 4 { 5 var$Encoding;6 var$ShowError;7 var$UserErrors;8 var$OnError;5 public string $Encoding; 6 public bool $ShowError; 7 public int $UserErrors; 8 public $OnError; 9 9 10 10 function __construct() … … 28 28 } 29 29 30 function ErrorHandler($Number, $Message, $FileName, $LineNumber , $Variables)30 function ErrorHandler($Number, $Message, $FileName, $LineNumber) 31 31 { 32 32 $ErrorType = array … … 63 63 } 64 64 65 function ExceptionHandler( Exception$Exception)65 function ExceptionHandler(Throwable $Exception) 66 66 { 67 67 $Backtrace = $Exception->getTrace(); … … 75 75 } 76 76 77 function ShowDefaultError( $Message)77 function ShowDefaultError(string $Message): void 78 78 { 79 79 $Output = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>'."\n". -
trunk/Packages/Common/UTF8.php
r880 r887 546 546 for ($I = 0; $I < strlen($String); $I++) 547 547 { 548 if (ord($String {$I}) & 0x80) // UTF control character548 if (ord($String[$I]) & 0x80) // UTF control character 549 549 { 550 if (ord($String {$I}) & 0x40) // First550 if (ord($String[$I]) & 0x40) // First 551 551 { 552 552 if ($UTFPrefix != '') $Result .= chr(array_search($UTFPrefix, $this->CharTable[$Charset])); 553 $UTFPrefix = $String {$I};553 $UTFPrefix = $String[$I]; 554 554 } 555 else $UTFPrefix .= $String {$I}; // Next555 else $UTFPrefix .= $String[$I]; // Next 556 556 } else 557 557 { 558 558 if ($UTFPrefix != '') $Result .= chr(array_search($UTFPrefix, $this->CharTable[$Charset])); 559 559 $UTFPrefix = ''; 560 $Result .= $String {$I};560 $Result .= $String[$I]; 561 561 } 562 562 } -
trunk/robots.txt
r886 r887 1 1 User-agent: * 2 Disallow: /TranslationList.php 3 Disallow: /form.php 4 Disallow: /log/ 5 6 2 Disallow: /*?
Note:
See TracChangeset
for help on using the changeset viewer.