Ignore:
Timestamp:
Oct 10, 2012, 12:21:38 PM (12 years ago)
Author:
chronos
Message:
  • Upraveno: Automatické spouštění instalovaných modulů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Modular/Install.php

    r424 r425  
    1414  foreach($System->Modules as $Module)
    1515  {
    16     if($Module->Installed) $Actions = '<a href="?a=uninstall&m='.$Module->Name.'">Odinstalovat</td>';
     16    if($Module->IsInstalled()) $Actions = '<a href="?a=uninstall&m='.$Module->Name.'">Odinstalovat</td>';
    1717      else $Actions = '<a href="?a=install&m='.$Module->Name.'">Instalovat</td>';
    18     if($Module->Installed) $Installed = 'Ano';
     18    if($Module->IsInstalled()) $Installed = 'Ano';
    1919      else $Installed = 'Ne';
    2020    $Deps = implode(', ', $Module->Dependencies);
Note: See TracChangeset for help on using the changeset viewer.