Pluf Framework

Pluf Framework Commit Details


Date:2008-12-05 06:52:15 (16 years 5 months ago)
Author:Loic d'Anterroches
Branch:develop, master
Commit:83f2d1d2e2f4c58676e27834af08f2b79b9301e5
Parents: 60175e41b2b82ecbce178a61bce55db3abef45f0
Message:Fixed error resulting in a white page.

Changes:

File differences

src/Pluf/HTTP/Response/ServerErrorDebug.php
225225
226226
227227
228
228
229229
230230
231231
232232
233233
234
234
235235
236
236
237237
238238
239239
......
270270
271271
272272
273
273
274274
275275
276276
            </thead>
            <tbody>';
            foreach ($frame['args'] as $k => $v) {
                $name = isset($params[$k]) ? '$'.$params[$k]->name : '?';
                $name = (isset($params[$k]) and isset($params[$k]->name)) ? '$'.$params[$k]->name : '?';
                $out .= '
                <tr>
                  <td>'.$o($k).'</td>
                  <td>'.$o($name).'</td>
                  <td class="code">
                    <div>'.highlight_string(print_r($v,true), true).'</div>
                    <div>'.Pluf_esc(print_r($v, true)).'</div>
                  </td>
                </tr>';
                  </tr>';
            }
            $out .= '</tbody></table>';
        }
            $out .= '<div class="commands">No src available</div>';
        }
        $out .= '</li>';
    }
    } // End of foreach $frames
    $out .= '
  </ul>
 

Archive Download the corresponding diff file

Branches

Tags

Number of commits:
Page rendered in 0.25683s using 13 queries.