Skip to content
Snippets Groups Projects

Fixes #1206 Calendar feed colors are made consistent

Merged Uma requested to merge uma.s/vtigercrm:Calendar_Feed_Color into master

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
55 55 try {
56 56 foreach ($request as $k => $v) {
57 57 if ($k == 'conditions' || $k == 'mapping') continue;
58
59 if ($k == 'fieldname' && $v) {
60 $vp = explode(',', $v);
61 $v = array();
62 foreach ($vp as $p) $v[] = $this->valForSql($p);
63 $request[$k] = implode(',', $v);
64 } else {
65 $request[$k] = $this->valForSql($v);
66 }
58 $param = explode(',', $request[$key]);
59 $value = $this->valForSql($param);
  • Uma
    Uma @uma.s started a thread on commit 68de401a
  • 55 55 try {
    56 56 foreach ($request as $k => $v) {
    57 57 if ($k == 'conditions' || $k == 'mapping') continue;
    58
    59 if ($k == 'fieldname' && $v) {
    60 $vp = explode(',', $v);
    61 $v = array();
    62 foreach ($vp as $p) $v[] = $this->valForSql($p);
    63 $request[$k] = implode(',', $v);
    64 } else {
    65 $request[$k] = $this->valForSql($v);
    66 }
    58 $param = explode(',', $request[$key]);
    59 $value = $this->valForSql($param);
    Please register or sign in to reply
    Loading