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

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

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

Всего: 1045 Доступных коммитов | Отфильтровано: 1045 Коммиты | Страница: 81 / 105
25.02.2026
Chore: Rename admin info files from full language names to ISO codes
Автор: Eduard Laas | Дата: 15:33 25.02.2026

Standardises the naming of per-module admin help files: the old full-word names (english.html, russian.html, …) are replaced with two-letter ISO 639-1 codes (en.html, ru.html, …) that match the language identifiers used everywhere else in the codebase.

Core changes:

  1. Renamed per-module info files:
  2. faq, files, forum, help, jokes, links, media, money, news, pages, shop, voting, whois → all six language variants renamed

    • english.html → en.html, french.html → fr.html,
german.html → de.html, polish.html → pl.html,
russian.html → ru.html, ukrainian.html → uk.html
  1. Global RSS info files migrated to module (admin/info/):
  2. admin/info/rss-de/en/fr/pl/ru/uk.html → deleted (old global location)
  3. modules/rss/admin/info/de/en/fr/pl/ru/uk.html → added (module-local)
  4. Whois admin info files:
  5. admin/info/whois-.html → modules/whois/admin/info/.html (ISO names)

Benefits:

  • Consistent file naming aligned with ISO 639-1 language codes
  • Easier programmatic lookup: adm_info() can resolve locale to filename directly
  • Removes ambiguity between long-name and code-based file resolution

Technical notes:

  • Content of HTML files unchanged; pure rename operation
  • adm_info() callers must use ISO codes (already the standard)
Fix: Unique SQL placeholders, INSERT params, and empty-category guard in forum
Автор: Eduard Laas | Дата: 15:31 25.02.2026

Three independent bugs fixed in the forum public module: duplicate named placeholders in WHERE clauses, reused placeholders in INSERT (l_uid/l_name/ l_time sharing names with earlier params), and a missing head()/foot() pair when a category has no topics.

Core changes:

  1. Unique WHERE placeholders (modules/forum/index.php):
  2. category query: :id → :parentid / :cid (used twice in OR condition)
  3. move(): :val → :id_val / :pid_val in UPDATE SET catid query
  4. INSERT named params fix (modules/forum/index.php):
  5. l_uid, l_name, l_time now bound as :l_uid / :l_name / :l_time

    • Previously reused :postid / :postname / :time — caused rebind errors
  6. Empty-category guard (modules/forum/index.php):
  7. Added else branch: renders head() + setTemplateWarning(_NO_INFO)

    • Prevents blank page when forum category contains no threads
    • 5-second redirect back to forum root

Benefits:

  • Eliminates PDO named-parameter rebind errors in forum queries
  • Proper HTTP response (head/foot wrapper) for empty forum categories
  • INSERT now correctly stores l_uid / l_name / l_time independently

Technical notes:

  • All bound values remain identical; only parameter names changed
  • No schema or API changes; backward compatible
Fix: Unique named placeholders for multi-column LIKE queries in search
Автор: Eduard Laas | Дата: 15:31 25.02.2026

PDO does not allow reusing the same named placeholder more than once in a single query; duplicate :word bindings caused silent data loss or driver errors. Each LIKE column now gets its own numbered parameter.

Core changes:

  1. Unique LIKE parameters (modules/search/index.php):
  2. auto_links: :word → :word1, :word2, :word3 (sitename/description/link)
  3. faq: :word → :word1, :word2 (title/hometext)
  4. files: :word → :word1, :word2, :word3 (title/description/bodytext)
  5. forum: :word → :word1, :word2 (title/hometext)
  6. jokes: :word → :word1, :word2 (title/joke)
  7. links: :word → :word1, :word2, :word3, :word4 (title/description/bodytext/url)
  8. media: :word → :word1/:word2/:word3 per search type branch
  9. news, pages, faq, content: same pattern applied throughout

Benefits:

  • Eliminates PDO parameter rebind errors on multi-column LIKE searches
  • All LIKE values are bound with the same '%'.$word.'%' value — no logic change
  • Consistent placeholder naming across all search branches

Technical notes:

  • Pure parameter-naming fix; SQL logic and result sets are unchanged
  • Backward compatible: no schema or API changes
Fix: Add defis type and case-insensitive filter dispatch to getVar()
Автор: Eduard Laas | Дата: 15:31 25.02.2026

Extends getVar() with a new 'defis' filter type that URL-encodes string input while leaving pre-encoded defaults untouched; also normalises all filter key lookups to lowercase so callers may use any casing.

Core changes:

  1. New filter type (core/security.php):
  2. Add 'defis' => urlencode(trim($v)) to the filters map

    • Returns '' (not false) for blank strings
    • Skips encoding when the value comes from $default
  3. Case-insensitive dispatch (core/security.php):
  4. All $filters[$type] lookups replaced with $filters[strtolower($type)]

    • Covers both the array-branch and the scalar-branch paths
    • Prevents silent no-ops when callers pass mixed-case type strings
  5. Special defis path (core/security.php):
  6. Dedicated early-return block for 'defis' type

    • Falls back to $default as-is (already encoded)
    • Returns false only when both value and default are empty

Benefits:

  • Enables safe URL-segment encoding via getVar() without raw urlencode() calls
  • Eliminates filter-miss bugs caused by type-string casing differences
  • Consistent fallback semantics across all filter types

Technical notes:

  • No change to existing filter behaviour or function signature
  • Backward compatible: callers using lowercase types are unaffected
  • 'defis' default is passed through unchanged (expected to be pre-encoded)
24.02.2026
Refactor: Remove unused globals from forum module
Автор: Eduard Laas | Дата: 22:52 24.02.2026

Removes stale global variable declarations from forum() and view() to keep function signatures accurate and reduce unnecessary imports.

Core changes:

  1. Forum frontend (modules/forum/index.php):
  2. forum(): remove unused $user global
  3. view(): remove unused $admin_file and $locale globals

Benefits:

  • Accurate global declarations prevent confusion during maintenance
  • Slight reduction in unnecessary variable imports per request
  • Architecture alignment with the $afile rename across the codebase

Technical notes:

  • No behavioral change
  • Backward compatible
Refactor: Modernize files admin module
Автор: Eduard Laas | Дата: 22:52 24.02.2026

Rewrites the files admin module using standard SLAED conventions: canonical function names, getVar() input handling, prepared SQL statements, and modern template calls. Copyright year updated to 2026.

Core changes:

  1. Files admin (modules/files/admin/index.php):
  2. Replace files_navi() with navi() using getAdminTabs()
  3. Rename functions to short canonical names

    • files_add() -> add(), files_delete() -> del(), etc.
  4. Replace all raw $_POST/$_GET with getVar()
  5. Use prepared SQL statements with named placeholders throughout
  6. Replace tpl_eval()/tpl_warn() with setTemplateBasic()/setTemplateWarning()
  7. Replace $admin_file with $afile throughout
  8. Update op= route names to match new function names
  9. Switch to single-quoted strings consistently
  10. Update copyright year to 2026

Benefits:

  • SQL injection eliminated throughout the module
  • Input validated at entry points via getVar()
  • Consistent architecture with other modernized admin modules
  • Maintainability improved by short canonical function names

Technical notes:

  • op= route values changed to match new function names
  • Backward compatible with the database schema
Refactor: Modernize clients admin module
Автор: Eduard Laas | Дата: 22:52 24.02.2026

Rewrites the clients admin module using standard SLAED conventions: canonical function names, getVar() input handling, prepared SQL statements, and modern template calls. SQL injection in save/delete queries eliminated. Missing exit after redirects added.

Core changes:

  1. Clients admin (modules/clients/admin/index.php):
  2. Replace clients_navi() with navi() using getAdminTabs()
  3. Rename functions to short canonical names:

    • clients_add() -> add()
    • clients_save() -> save()
    • clients_delete() -> del()
    • clients_active() -> status()
    • clients_info() -> info()
  4. Replace all raw $_POST/$_GET with getVar()
  5. Fix SQL injection in save(): prepared statements with named placeholders
  6. Replace tpl_eval()/tpl_warn() with setTemplateBasic()/setTemplateWarning()
  7. Replace $admin_file with $afile throughout
  8. Add exit after header() in del() and status()
  9. Rewrite switch to compact form with named cases
  10. Add missing newline at end of file

Benefits:

  • SQL injection in save and delete queries eliminated
  • Input sanitized via getVar() throughout
  • Missing exit after redirect now present
  • Consistent naming convention across admin modules

Technical notes:

  • op= route values changed to match new function names
  • Backward compatible with the database schema
Refactor: Modernize auto_links admin module
Автор: Eduard Laas | Дата: 22:51 24.02.2026

Rewrites the auto_links admin module to follow current SLAED architecture: standard function naming, getVar() input handling, prepared SQL statements, and modern template calls. SQL injection in the stats query is eliminated. Copyright year updated to 2026.

Core changes:

  1. Auto-links admin (modules/auto_links/admin/index.php):
  2. Replace auto_links_navi() with navi() using getAdminTabs()
  3. Rename all functions to short canonical names:

    • auto_links_stat() -> stats()
    • auto_links_add() -> add()
    • auto_links_save() -> save()
    • auto_links_delete() -> del()
    • auto_links_conf() -> conf()
    • auto_links_conf_save() -> confsave()
    • auto_links_info() -> info()
    • nullhits() and noindel() extracted from switch as named functions
  4. Replace all raw $_POST/$_GET with getVar()
  5. Fix SQL injection in stats(): prepared statement with :lid placeholder
  6. Replace tpl_eval()/tpl_warn() with setTemplateBasic()/setTemplateWarning()
  7. Replace $admin_file/$aroute with $afile throughout
  8. Use $conf['auto_links'] sub-array instead of $confal
  9. Rewrite switch to compact form with named cases
  10. Remove closing ?>
  11. Update copyright year to 2026

Benefits:

  • SQL injection in stats query eliminated
  • Input validated through getVar() at all entry points
  • Consistent naming convention with other modernized modules
  • Maintainability improved by short, readable function names

Technical notes:

  • op= route values changed to match new function names
  • $confal replaced by $conf['auto_links'] sub-array
  • Routing layer must map new op names
Refactor: Rename $aroute/$admin_file to $afile in account module
Автор: Eduard Laas | Дата: 22:51 24.02.2026

Aligns the account admin and frontend module with the canonical $afile variable, and removes unused globals from checkuser() and view().

Core changes:

  1. Account admin (modules/account/admin/index.php):
  2. Replace $aroute with $afile in navi(), users(), add(), addsave(), newuser(), nullpoints(), nullsave(), conf(), save(), newdel(), del()

  3. Fix navi() call spacing: navi(0,0,0,0) -> navi(0, 0, 0, 0)
  4. Account frontend (modules/account/index.php):
  5. Replace $admin_file with $afile in view()
  6. Remove unused $conf from checkuser() globals

Benefits:

  • Consistent $afile usage across frontend and admin sides
  • Eliminates unnecessary global imports
  • Architecture alignment with modernized modules

Technical notes:

  • No behavioral change; pure identifier rename
  • Backward compatible
Refactor: Rename $aroute to $afile in admin panel modules
Автор: Eduard Laas | Дата: 22:50 24.02.2026

Eliminates the legacy $aroute variable from all four admin panel modules, replacing it with the canonical $afile identifier. Also removes the pwd field from admin list and edit queries to avoid exposing password hashes unnecessarily in list views.

Core changes:

  1. Admins manager (admin/modules/admins.php):
  2. Replace $aroute with $afile in admins(), add(), save(), del()
  3. Remove pwd column from SELECT in admins() list query
  4. Remove pwd from SELECT and list() destructuring in add()
  5. Blocks manager (admin/modules/blocks.php):
  6. Replace $aroute with $afile in all functions

    • add(), fileadd(), fileedit(), fix(), addsave(), filecode()
    • filecodesave(), edit(), editsave(), change(), del()
  7. Config manager (admin/modules/config.php):
  8. Replace $aroute with $afile in config(), save()
  9. Modules manager (admin/modules/modules.php):
  10. Replace $aroute with $afile in navi(), modules(), edit(), status(), save()

Benefits:

  • Consistent use of $afile across the entire admin panel
  • Removing pwd from queries reduces attack surface in list views
  • Simpler global declarations in each function

Technical notes:

  • No behavioral change beyond the variable rename
  • $afile is injected by the admin bootstrap
  • Backward compatible

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

1 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 105
Хотите опробовать SLAED CMS в действии?
Идеи и предложения
Обратная связь
Подтверждение

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