Changeset adc0bf0 in github


Ignore:
Timestamp:
May 29, 2009 3:45:40 AM (4 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
2ff8af1
Parents:
0b9dcdd
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_user.php

    r1301e98 radc0bf0  
    409409          $name = $user_name; 
    410410        } 
    411          
     411 
    412412        $plugin = $rcmail->plugins->exec_hook('create_identity', array('record' => array( 
    413413          'login' => true, 
     
    417417          'standard' => $standard))); 
    418418           
    419         if (!$plugin['abort'] && $plugin['record']['name'] && $plugin['record']['email']) { 
     419        if (!$plugin['abort'] && $plugin['record']['email']) { 
    420420          $dbh->query( 
    421421              "INSERT INTO ".get_table_name('identities')." 
     
    424424              $user_id, 
    425425              $plugin['record']['standard'], 
    426               $plugin['record']['name'], 
     426              $plugin['record']['name'] != NULL ? $plugin['record']['name'] : '', 
    427427              $plugin['record']['email']); 
    428428        } 
Note: See TracChangeset for help on using the changeset viewer.