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 - alvarotm01

Pages: 1 2 [3] 4 5 ... 23
31
Older versions / Re: [1.7 beta] email not going into workspace
« on: May 13, 2010, 02:01:56 pm »
When you see the email in the overview widget, if you click on the email, can you see its content? does the properties box, at the right, show any workspace?

32
This bug will be fixed for next 1.7 release

33
Feature requests / Re: add printer friendly button for calender
« on: May 07, 2010, 06:06:01 pm »
Hi Alexandre,

Are the other kind of notifications sent? for example when you post a comment on a note, every subscriptor of that note must receive an email with the comment.

regards

34
Hi,
this issue is fixed for version 1.7.
regards

35
Fixed for next release.
thanks for reporting!

36
Older versions / Re: [1.6.2] Event Invites
« on: May 06, 2010, 03:35:28 pm »
Hi,

this is fixed for version 1.7

37
Older versions / Re: [1.7-beta2] SQL Errors on Overview
« on: April 19, 2010, 12:38:06 pm »
Hi,

Which version of MySql are you using?
Required version is MySql 5 or above, in order to support some functions (e.g. TIMESTAMPADD)

regards

38
Older versions / Re: [1.7 beta 1] JS popup calendar doesn't display
« on: April 07, 2010, 12:55:19 pm »
Hi Nuno,
A fix for this issue will be available in next release.
regards

39
Hi,
Please add this 2 lines to "application/views/mail/add_mail.php" after line 355
Code: [Select]
,
entities_additional : '#39,#336,#337,#368,#369'

After refreshing the page, these four characters will be added as entities to the mail editor.

regards

40
Hi Petar,

We have fixed this for next version (1.7).
Event creator will appear in the invitations list (invited by default), and can be uninvited.

regards

41
Older versions / Re: Error "undefined variable" (Version 1.6.1)
« on: December 29, 2009, 02:05:44 pm »
Thank you very much !

regards

42
Hi,

to fix that, replace lines 127 to 131 of /application/controllers/AccountController.class.php
with these ones
Code: [Select]
$project_user = ProjectUsers::findById(array('project_id' => $project->getId(), 'user_id' => $user->getId()));
if (!$project_user) {
$project_user = new ProjectUser();
$project_user->setAllPermissions(true);
$project_user->setUserId($user->getId());
$project_user->setProjectId($project->getId());
$project_user->save();
}

regards

43
Older versions / Re: Tags and Missing Emails
« on: December 28, 2009, 03:36:10 pm »
hi,

When deleting emails, they are not deleted physically, they are "marked as deleted", and the tags are not being cleared, thats why you see 228 tagged emails.
To fix that add this line after line 125 of "application/models/mail_contents/MailContent.class.php"
Code: [Select]
$this->clearTags();

regards

44
Older versions / Re: Bug in contact import
« on: December 21, 2009, 02:52:37 pm »
Hi,

To fix the issue for email addresses, you may replace line 2012 of 'application/controllers/ContactController.class.php' with this one:
Code: [Select]
} else if (preg_match('/EMAIL;type=(PREF,)?INTERNET(,PREF)?(;type=(HOME|WORK))?(;type=PREF)?:([-a-zA-Z0-9_.]+@[-a-zA-Z0-9.]+)/i', $line, $matches)) {

About the addresses, to remove the "\n" character, try replacing line 2057 of 'application/controllers/ContactController.class.php' with this one:
Code: [Select]
foreach ($addr as $k=>$v) $addr[$k] = str_replace(array("\r\n", "\n", "\r", "\t", '\r\n', '\n', '\r', '\t'), " ", trim($v));

regards

45
Older versions / Re: 1.6 Contact Vcard import BUG
« on: November 24, 2009, 12:00:37 pm »
Hi,

The fix for this issue will be included in next release.

greetings

Pages: 1 2 [3] 4 5 ... 23