Changeset 2053


Ignore:
Timestamp:
02/23/10 15:11:17 (14 years ago)
Author:
niltonneto
Message:

Ticket #920 - Correção para substituir header.inc por header.session.inc.

Location:
trunk/expressoMail1_2/inc
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/show_embedded_attach.php

    r1040 r2053  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        $username = $_SESSION['phpgw_info']['expressomail']['user']['userid']; 
  • trunk/expressoMail1_2/inc/show_img.php

    r1040 r2053  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        header("Content-Type: image/jpeg"); 
  • trunk/expressoMail1_2/inc/show_thumbs.php

    r1040 r2053  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115        $username = $_SESSION['phpgw_info']['expressomail']['user']['userid']; 
  • trunk/expressoMail1_2/inc/show_user_photo.php

    r1495 r2053  
    11<?php 
    2 if(!isset($GLOBALS['phpgw_info'])){ 
    3         $GLOBALS['phpgw_info']['flags'] = array( 
    4                 'currentapp' => 'expressoMail1_2', 
    5                 'nonavbar'   => true, 
    6                 'noheader'   => true 
    7         ); 
    8 } 
    9 require_once '../../header.inc.php'; 
     2 
     3        require_once '../../header.session.inc.php'; 
    104 
    115 
Note: See TracChangeset for help on using the changeset viewer.