Subversion Repositories munaweb

Rev

Rev 160 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 160 Rev 162
Line 20... Line 20...
20
    $trace = ob_get_contents();
20
    $trace = ob_get_contents();
21
    ob_end_clean();
21
    ob_end_clean();
22
 
22
 
23
    // Remove first item from backtrace as it's this function which is redundant.
23
    // Remove first item from backtrace as it's this function which is redundant.
24
    $trace = preg_replace('/^#0\s+' . __FUNCTION__ . "[^\n]*\n/", '', $trace, 1);
24
    $trace = preg_replace('/^#0\s+' . __FUNCTION__ . "[^\n]*\n/", '', $trace, 1);
25
 
-
 
26
    // Renumber backtrace items.
-
 
27
    $trace = preg_replace_callback('/^#(\d+)/m', '\'#\' . ($1 - 1)', $trace);
-
 
28
 
25
 
29
    return $trace;
26
    return $trace;
30
}
27
}
31
 
28
 
32
class eBayPlatformNotificationListener extends eBayPlatformNotifications {
29
class eBayPlatformNotificationListener extends eBayPlatformNotifications {