Changeset 894 for trunk/Application


Ignore:
Timestamp:
Mar 6, 2023, 12:16:38 PM (15 months ago)
Author:
chronos
Message:
  • Fixed: Export error due to PHP 8.1 deprecated code.
  • Modified: Code cleanup.
Location:
trunk/Application
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r893 r894  
    77
    88$Version = '1.0';
    9 $Revision = 893; // Subversion revision
     9$Revision = 894; // Subversion revision
    1010$DatabaseRevision = 891; // Database structure revision
    1111$ReleaseDate = strtotime('2023-03-06');
  • trunk/Application/View.php

    r893 r894  
    33class BaseView extends View
    44{
    5   public string $Title;
     5  public string $Title = '';
    66
    77  function ShowLocaleSelector()
    88  {
    9     //$Output .= ' <form action="?setlocale" method="get">';
    109    $Output = ' <select onchange="window.location=this.value">';
    1110    foreach (Core::Cast($this->System)->LocaleManager->Available as $Locale)
     
    4544
    4645    $Output .= $this->ShowLocaleSelector();
    47     //$Output .= '</form>';
    4846    $Output .= '</span></div>';
    4947    return $Output;
Note: See TracChangeset for help on using the changeset viewer.