Ignore:
Timestamp:
Jul 27, 2014, 9:14:56 PM (10 years ago)
Author:
chronos
Message:
  • Odstraněno: Zbytečná PHP ukončovací značka "?>" z konce všech souborů.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 
        21config.php
         2.project
  • trunk/Application/Model/Permission.php

    r40 r47  
    1111      if($DbRow['SubGroup'] > 0) $Result = array_merge($Result, $this->LoadForGroup($DbRow['SubGroup']));
    1212      if($DbRow['Operation'] > 0)
    13       { 
     13      {
    1414        $DbResult2 = $this->Database->query('SELECT `PermissionOperation`.*, `Module`.`Name` FROM `PermissionOperation` JOIN `Module` ON `Module`.`Id` = `PermissionOperation`.`Module` WHERE `PermissionOperation`.`Id`='.$DbRow['Operation']);
    1515        $DbRow2 = $DbResult2->fetch_assoc();
     
    1919    $this->Data = $Result;
    2020  }
    21    
     21
    2222  function LoadForGroup($Group)
    2323  {
     
    2828      if($DbRow['SubGroup'] > 0) $Result = array_merge($Result, $this->LoadForGroup($DbRow['SubGroup']));
    2929      if($DbRow['Operation'] > 0)
    30       { 
     30      {
    3131        $DbResult2 = $this->Database->query('SELECT `PermissionOperation`.*, `Module`.`Name` FROM `PermissionOperation` JOIN `Module` ON `Module`.`Id` = `PermissionOperation`.`Module` WHERE `PermissionOperation`.`Id`='.$DbRow['Operation']);
    3232        $DbRow2 = $DbResult2->fetch_assoc();
     
    3636    return($Result);
    3737  }
    38  
     38
    3939  function Check($Module, $Action, $Item = 0)
    4040  {
     
    4444  }
    4545}
    46 
    47 ?>
Note: See TracChangeset for help on using the changeset viewer.