Журнал изменений

Журнал изменений

Фильтр и поиск

Всего: 1045 Доступных коммитов | Отфильтровано: 1045 Коммиты | Страница: 72 / 105
02.03.2026
Fix: PHP 8.4 TypeErrors and runtime warnings — core/system.php, core/user.php
Автор: Eduard Laas | Дата: 13:13 02.03.2026

Resolve six distinct runtime errors surfaced in error_php.log and error_sql.log, all caused by PHP 8.4 strict type enforcement or missing null-guards on global variables.

Core changes:

  1. sport_referer INSERT (core/system.php):
  2. Column names refer/page → referer/link to match DB schema
  3. num_ajax() signature (core/system.php, core/user.php):
  4. Argument #10 \$id: int → string (DOM element name)
  5. Argument #11 \$cid / \$mnum: "" → 0 / 8 at all call sites
  6. Sitemap path fix (core/system.php):
  7. doSitemap() still wrote to config/sitemap/ while SITEMAP_DIR points to storage/sitemap/ — unified all three path references

  8. Upload widget null-guards (core/system.php):
  9. \$user[0] → \$user[0] ?? 0 (admin has no user cookie)
  10. \$con[10] / \$con[11] → ?? 0 (short upload configs lack keys 10-11)
  11. checkemail() return type (core/system.php):
  12. return \$stop → return \$stop ?? [] when no errors found (valid bot emails caused TypeError: must return array, null returned)

Benefits:

  • Eliminates all entries from error_sql.log and error_php.log
  • Consistent null-safe access on \$user and \$con arrays

Technical notes:

  • \$user is populated from cookie via explode(':'); absent in admin context
  • \$con comes from explode('|', uploads config string); length varies by module
Refactor: adm_info() → getAdminInfo() — auto-detect, no params
Автор: Eduard Laas | Дата: 13:12 02.03.2026

Replace the legacy adm_info() function with getAdminInfo(), which auto-detects the info file path from the current request context (\$_GET['name']) instead of requiring explicit path parameters. Restructures admin/info/ from flat {name}-{locale}.html files into {name}/{locale}.html subdirectories.

Core changes:

  1. Function rename and rewrite (core/admin.php):
  2. New signature: getAdminInfo(): string (no parameters)
  3. Auto-detects module path: modules/{name}/admin/info/{locale}.html
  4. Auto-detects admin path: admin/info/{name}/{locale}.html
  5. AJAX save handler: POST type= + name= instead of mod= + name=
  6. \$obj parameter removed; callers use echo getAdminInfo() explicitly
  7. AJAX routing (index.php):
  8. case 'adm_info': adm_info() → echo getAdminInfo()
  9. Call sites — 23 admin modules (admin/modules/*.php):
  10. adm_info(1, 0, 'name') → getAdminInfo()
  11. Call sites — 23 module admins (modules/*/admin/index.php):
  12. adm_info(1, 'mod', 0) → getAdminInfo()
  13. Info file structure (admin/info/):
  14. Renamed {name}-{locale}.html → {name}/{locale}.html (subdirs)
  15. Added .htaccess + index.html per directory

Benefits:

  • Zero path parameters — function resolves location automatically
  • Consistent with SLAED get-prefix naming convention
  • Admin and module admins use identical call syntax

Technical notes:

  • Old flat-file format (admins-de.html) was already broken: code read wrong paths while files had already moved to subdirectories

  • getcat() call in admin.php fixed: "" → 0 for int \$id parameter
01.03.2026
Chore: normalize encoding, whitespace, and dead code across admin and module files
Автор: Eduard Laas | Дата: 22:47 01.03.2026

Fix mojibake in copyright headers (© → (c)) caused by UTF-8 double-encoding in source files. Remove corrupted Russian comments from forum module. Standardize indentation (tabs → 4-space) in access.php. Translate Russian doc-comments in ConfigValidationTest to English per project language rules.

Core changes:

  1. Copyright encoding fix (admin/index.php, admin/modules/*, templates/admin/index.php, modules/changelog/admin/index.php, modules/whois/index.php):

  2. Replace garbled © with plain (c) in file headers
  3. Add missing newline at end of files
  4. Indentation normalization (core/access.php):
  5. Convert tab indentation to 4-space throughout the file
  6. No functional changes
  7. Dead code removal (modules/forum/index.php):
  8. Remove 5 Mojibake Russian comments that became unreadable garbled UTF-8
  9. Comments were orphaned annotations with no semantic value
  10. Array syntax modernization (modules/clients/index.php):
  11. array() constructor calls → short [] syntax
  12. Remove trailing blank line at EOF
  13. Test comment translation (tests/ConfigValidationTest.php):
  14. Translate PHPDoc comments and assertion messages from Russian to English
  15. Aligns with project rule: all code/comments/identifiers must be in English

Benefits:

  • Consistent file headers across all PHP files in the project
  • Readable source without mojibake artifacts
  • Uniform indentation style in core files

Technical notes:

  • No logic changes in any file — purely cosmetic/encoding fixes
  • core/admin.php included for CRLF → LF normalization (no content change)
Fix: filterMarkdown — reorder params, HTML passthrough, multi-pass stash; template existence check
Автор: Eduard Laas | Дата: 22:47 01.03.2026

Resolves three classes of runtime bugs: (1) HTML content mangled by parser when rendered via content/view module, (2) empty template file treated as missing template (TypeError cascade), (3) stash tokens leaking into rendered output due to single-pass resolution.

Core changes:

  1. filterMarkdown param reorder (core/system.php):
  2. Signature: filterMarkdown(string $src, string $mod = '', bool $safe = true)

    • $safe is now an explicit opt-out (false) for admin/legacy content
    • bb_decode() updated: filterMarkdown($src, $mod, false)
  3. HTML passthrough fixes for safe=false mode (core/system.php):
  4. filterMain: skip filterIndentedCode when safe=false — prevents tab-indented HTML lines being wrapped in <pre><code> blocks

  5. filterBlocks: widen HTML block pattern from specific tag list to /^<\/?[a-zA-Z]/ so <p>, <tr>, <td> etc. are recognized as HTML blocks

  6. filterBlocks: decode &#034;/&#039; entities before stashing HTML blocks (save_text(editor=0) encodes quotes as HTML entities)

  7. filterBlocks: strtr($raw, $this->stash) before re-stashing — resolves inner BB-block tokens that were already stashed inside HTML blocks

  8. Multi-pass stash resolution (core/system.php):
  9. filterHtml: single strtr → loop until no \x02{salt}: sentinel remains

    • Prevents stash tokens leaking when [tabs] BB block contains HTML blocks
    • Loop breaks on no-progress to avoid infinite loop
  10. Return type normalization (core/system.php):
  11. getThemeLoad(): ?string → string; returns '' for missing/unreadable files
  12. replace_break/user_sinfo/user_sainfo/adminblock/add_menu/rss_read/ fields_out/engines_word: ?string → string with return '' fallback

  13. Template existence check (core/template.php):
  14. setTemplateBasic/setTemplateWarning: use getThemeFile() for existence, then getThemeLoad() for content — distinguishes empty template from missing

  15. TemplateTest.php stubs updated to match new signatures
  16. content/view migration (modules/content/index.php):
  17. Replace bb_decode() with filterMarkdown($hometext, $conf['name'], false)

    • Render admin HTML content correctly without XSS filtering
  18. Remove deprecated imagedestroy() calls (core/system.php):
  19. GdImage is a proper PHP object since 8.0; GC handles cleanup automatically

Benefits:

  • HTML content stored by admin now renders correctly in content/view
  • Empty theme templates (open.html etc.) no longer trigger "template missing" error
  • Stash tokens no longer appear in rendered page output
  • PHP 8.4 return type compliance across parser and template functions

Technical notes:

  • safe=false bypasses XSS filters — only use for admin-authored content
  • Multi-pass stash is O(depth) iterations, bounded by nesting depth
  • Cyrillic transliteration maps migrated to \u{XXXX} escapes for encoding safety
Fix: PHP 8.4 return types — eliminate nullable functions in security.php, user.php
Автор: Eduard Laas | Дата: 22:46 01.03.2026

Replace ?string nullable returns with explicit string + return '' fallback to prevent TypeError when callers assume a string result. Covers save_text(), fields_save(), setMessageShow(), and userblock(). Also removes 35 unused $confXX transition aliases and dead commented log_report() code from security.php.

Core changes:

  1. Return type fixes (core/security.php):
  2. save_text(): ?string → string; adds return '' when $text is falsy

    • Prevents TypeError in replace_break() at system.php:4793
  3. fields_save(): ?string → string; adds return '' when $field is not array
  4. Return type fixes (core/user.php):
  5. setMessageShow(): ?string → string; adds return '' at end of function
  6. userblock(): ?string → string; adds return '' when user has no block set
  7. Dead code removal (core/security.php):
  8. Remove 35 $confXX transition aliases — all confirmed unused after migration
  9. Remove commented-out log_report() legacy implementation

Benefits:

  • Eliminates runtime TypeError when save_text() result passed to replace_break()
  • PHP 8.4 strict typing compliance — no implicit null returns from typed functions
  • Cleaner security.php — removes ~60 lines of dead code

Technical notes:

  • Aliases were safety-net globals from $conf migration; all callers now use $conf['key'] directly
  • No functional change to return values — empty string is the correct semantic fallback
Refactor: modernise 39 frontend modules — formatting and renames
Автор: Eduard Laas | Дата: 02:29 01.03.2026

Uniform cleanup pass across all frontend and admin module files to align with the PHP 8.4 migration already applied to core.

Core changes:

  1. Admin modules — function renames (24 files):
  2. head() → setHead(), foot() → setFoot() across all admin entry points

    • account, auto_links, changelog, clients, contact, content, faq
    • files, forum, help, jokes, links, media, money, news, order
    • pages, rss, shop, sitemap, voting, whois
  3. Indentation normalisation (all 39 files):
  4. Tabs replaced with 4-space indentation (PSR-12 style)
  5. Trailing blank lines removed from switch/case blocks
  6. clients/index.php — additional refactoring:
  7. systems() renamed to clients(); save_hidden() renamed to hidden()
  8. All internal call sites updated accordingly
  9. status column removed from SELECT (was fetched but never used)
  10. global $conf removed from download() and generator() (unused)
  11. Mojibake in $output substitution table fixed (© § Ц № Ў etc.)
  12. Mojibake in Russian comments decoded to proper UTF-8 Cyrillic
  13. Minor improvements in individual modules:
  14. changelog/index.php: $retcode initialised before by-ref use
  15. faq/index.php: intermediate $ncat variable eliminated
  16. news/index.php: spacing normalisation in type-hint default value

Benefits:

  • Consistent code style across all module files
  • Dead globals and unused SELECT columns removed
  • Broken substitution table in clients module corrected

Technical notes:

  • No behaviour changes in admin modules; rename-only
  • clients/index.php mojibake fix corrects runtime substitution values
Refactor: PHP 8.4 migration — core/system.php (Batch 4)
Автор: Eduard Laas | Дата: 02:29 01.03.2026

Largest core file (5 800+ lines) fully migrated to PHP 8.4 standards: type declarations on all 103+ functions, array-syntax modernisation, mojibake elimination, and error-suppression removal.

Core changes:

  1. Type declarations (103+ functions):
  2. Return types added across all public functions

    • void, never, string, ?string, int, bool, ?bool, array, array|false
    • int|string (is_bot, from_bot), mixed for heterogeneous params
  3. render_blocks(): void → ?string — function returns string in cases 'p'/'o'
  4. getBlocks(): return render_blocks() split to call + return (void compliance)
  5. isArray(): ?bool → bool; logic simplified to always return bool
  6. Array syntax (65 single-line conversions + 3 manual fixes):
  7. array() → [] everywhere except string literals
  8. Multi-line stream_context_create([...]) fixed manually
  9. Nested array() inside already-converted [...] on engine line fixed
  10. Mojibake elimination (runtime + comments):
  11. 6 em-dash occurrences (triple-encoded U+2014 → —)
  12. Cyrillic HTML transliteration table (lines 4815-4817) restored: А–Я
  13. 17 Russian comment lines translated to English
  14. Error suppression removal:
  15. @mkdir → mkdir (result already checked with if)
  16. @fopen → fopen (result already checked with if)

Benefits:

  • Complete type coverage enables reliable static analysis
  • Runtime mojibake in transliteration table eliminated
  • All error paths now explicit, no silent suppression

Technical notes:

  • No behaviour changes; refactor-only
  • Dead code mb_strtolower polyfill (PHP 8.4 built-in) left untouched
Refactor: PHP 8.4 migration — core/access.php, security.php, user.php
Автор: Eduard Laas | Дата: 02:29 01.03.2026

Migrate three core bootstrap files to PHP 8.4 standards: add return-type declarations to all functions, modernize array syntax, remove error suppression and update copyright year.

Core changes:

  1. Type declarations (access.php, security.php, user.php):
  2. Add return type hints to all functions

    • setUnauthorized(): never, setExit(): never, getIp(): string
    • checkSecurity(): void, checkBot(): void, getBotList(): array
    • setLang(): void, getLang(): string, getusrinfo(): array|false
    • checklogin(): void, getAgent(): string, and more
  3. Syntax modernisation (all three files):
  4. array() constructors → short [] syntax throughout
  5. Remove @ error-suppression operators where result is already checked
  6. Housekeeping:
  7. Copyright year updated to 2026 (mojibake © → ©)
  8. Remaining Russian inline comments translated to English

Benefits:

  • Static analysis can now verify return types across call sites
  • Eliminates silent failures from suppressed errors
  • Consistent modern PHP 8.4 syntax

Technical notes:

  • No behaviour changes; refactor-only
  • setUnauthorized() and setExit() typed never — both call exit
28.02.2026
Refactor: migrate $confXX transition aliases to direct $conf['key'] access
Автор: Eduard Laas | Дата: 23:13 28.02.2026

Systematically replaces all legacy \$confXX alias references with direct \$conf['section']['key'] access across admin modules, core, blocks, and module files as part of the centralized config architecture migration.

Core changes:

  1. Admin modules (admin/modules/*.php — 20 files):
  2. Replace \$confu, \$confn, \$confst, \$confr, \$confpr, \$conffo etc. with direct \$conf['users'], \$conf['news'], \$conf['statistic'] etc. access

  3. Remove now-unused alias variables from global declarations
  4. Core files (core/admin.php, core/access.php, core/template.php, core/classes/pdo.php):
  5. Migrate remaining \$confXX references to \$conf['section'] pattern
  6. Align with getConfig() unified config architecture
  7. Blocks and templates (blocks/.php, templates//.php):
  8. \$confu, \$conffav, \$confal, \$confv references replaced with direct access
  9. Module admin and frontend (modules/*/admin/index.php, modules/shop/index.php):
  10. \$confXX aliases replaced; global declarations trimmed accordingly
  11. Supporting files (index.php, setup/index.php, phpstan-bootstrap.php):
  12. Remaining alias usages updated to direct \$conf path

Benefits:

  • Single source of truth: all config reads go through \$conf loaded by getConfig()
  • Eliminates transition alias block dependencies; aliases can be removed incrementally
  • Reduces global variable pollution in functions

Technical notes:

  • Transition alias block in security.php retained for remaining consumers; individual aliases removed as their last usage is migrated

  • No behavior change: \$conf['key'] values are identical to former \$confXX aliases
Refactor: use $conf['sitemap'] directly; fix favorliste undefined \$num bug
Автор: Eduard Laas | Дата: 23:13 28.02.2026

Removes redundant config file re-inclusion in sitemap functions and fixes a variable name regression introduced during the $confXX → $conf migration.

Core changes:

  1. Sitemap config access (core/system.php):
  2. doSitemap(): replace include('config/sitemap.php') + \$confma extraction with direct \$conf['sitemap']['key'] — config already loaded by getConfig()

  3. setHead(): same fix — removes duplicate filesystem read on every page load
  4. All \$confma['...'] references replaced with \$conf['sitemap']['...']
  5. \$sitemap_data intermediate variable eliminated
  6. Bug fix (core/user.php):
  7. favorliste(): \$a = (\$num) ? ... used undefined \$num after renaming to \$cid during config migration; fixed to \$a = (\$cid) ? \$offset + 1 : 1

Benefits:

  • Eliminates one file_get_contents / include per sitemap check per request
  • No stale intermediate variable; config path is uniform across codebase
  • Pagination counter in favorliste() now correctly reflects current page

Technical notes:

  • \$confma transition alias in security.php is now fully unused; safe to remove
  • \$conf['sitemap'] is populated by getConfig() from config/sitemap.php return value

Всего: 1045 на 105 страницах по 10 на каждой странице

1 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 105
Хотите опробовать SLAED CMS в действии?
Идеи и предложения
Обратная связь
Подтверждение

Поделиться
QR-код