Show
Ignore:
Timestamp:
03/23/08 13:42:50 (10 months ago)
Author:
aarkerio
Message:

Update

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/models/message.php

    r282 r331  
    33*  Karamelo eLearning Platform 
    44*  Chipotle Software 2002-2008  
    5 *  GPLv3 manuel<arroba>mononeurona<punto>org 
     5*  GPLv3 manuel<arroba>mononeurona<punto>org ASMO 
    66**/  
    77 
     
    1111     
    1212    public $belongsTo = 'User'; 
     13     
     14    public $validate = array( 
     15      'title' => VALID_NOT_EMPTY, 
     16      'body' => VALID_NOT_EMPTY, 
     17      'user_id' => VALID_NOT_EMPTY, 
     18      'sender_id' => VALID_NOT_EMPTY 
     19      ); 
     20 
    1321} 
    14  
    1522?>