Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - akurek

Pages: [1]
1
Older versions / Re: sort problem
« on: February 15, 2010, 06:57:18 am »
More specifically, you can not sort the column type of file.

Best regards

2
Older versions / sort problem
« on: February 04, 2010, 06:45:01 pm »
If you add a column in a view that can not be sorted with respect to this column

3
Older versions / Search problem
« on: February 02, 2010, 07:08:26 pm »
Next issue
does not search for the names of two letter
This is a problem, for example, the Polish names  such as Ul Jan

I apologize for the language : (google translate)

4
Older versions / Re: Great substantive error in all versions
« on: February 01, 2010, 10:43:58 am »
Problem solved:
Fengoffice file / application / models / contacts / Contact.class.php
   function validate(&$errors) {

      // Validate username if present
   //   if(!$this->validatePresenceOf('lastname') && !$this->validatePresenceOf('firstname')) {
   //      $errors[] = lang('contact identifier required');
   //   }
   //   if (!$this->validateUniquenessOf('firstname','lastname' )) { // if
   //      $errors[] = lang('name must be unique');
   //   }

      //if email address is entered, it must be unique
      if($this->validatePresenceOf('email')) {
         $this->setEmail(trim($this->getEmail()));
         if(!$this->validateFormatOf('email', EMAIL_FORMAT)) $errors[] = lang('invalid email address');
         if(!$this->validateUniquenessOf('email')) $errors[] = lang('email address must be unique');
      }
   } // validate

5
Older versions / Great substantive error in all versions
« on: January 29, 2010, 05:15:57 am »
Great substantive error in all versions of the module fengoffice address book you can not add two people with the same name and surname, even if they have different email addresses.

Pages: [1]