Changeset 622bce2 in github


Ignore:
Timestamp:
Aug 1, 2012 1:03:28 PM (10 months ago)
Author:
Aleksander Machniak <alec@…>
Children:
7dca45e, 0ed7034d
Parents:
5cb8f9f
Message:

Convert tabs to spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_user.php

    r041c93c r622bce2  
    480480            $standard = 1; 
    481481            foreach ($email_list as $row) { 
    482                     $record = array(); 
     482                $record = array(); 
    483483 
    484484                if (is_array($row)) { 
    485                         $record = $row; 
     485                    $record = $row; 
    486486                } 
    487487                else { 
     
    489489                } 
    490490 
    491                     if (empty($record['name'])) 
    492                         $record['name'] = $user_name; 
     491                if (empty($record['name'])) 
     492                    $record['name'] = $user_name; 
    493493                $record['name'] = strip_newlines($record['name']); 
    494494                $record['user_id'] = $user_id; 
     
    496496 
    497497                $plugin = $rcube->plugins->exec_hook('identity_create', 
    498                         array('login' => true, 'record' => $record)); 
     498                    array('login' => true, 'record' => $record)); 
    499499 
    500500                if (!$plugin['abort'] && $plugin['record']['email']) { 
Note: See TracChangeset for help on using the changeset viewer.