We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I only getting the first 63 characters of the description field in the ics file while there are more then 63
The text was updated successfully, but these errors were encountered:
the same problem...
Sorry, something went wrong.
Solution:
file: class.iCalReader.php you need to find function:
public function keyValueFromString($text) { preg_match("/([^:]+)[:]([\w\W]*)/", $text, $matches); if (count($matches) == 0) { return false; } $matches = array_splice($matches, 1, 2); return $matches; }
and change it to:
public function keyValueFromString($text) { preg_match("/([^:]+)[:]([\w\W]*)/", $text, $matches); if (substr($text, 0, 1) === " "){ return false; } if (count($matches) == 0) { return false; } $matches = array_splice($matches, 1, 2); return $matches; }
also find and comment
foreach ($lines as $line) { //$line = trim($line); $add = $this->keyValueFromString($line); if ($add === false) { $line = substr($line, 1);
No branches or pull requests
I only getting the first 63 characters of the description field in the ics file while there are more then 63
The text was updated successfully, but these errors were encountered: