Changeset 920 in tests
- Timestamp:
- 07/19/2012 04:18:57 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/trac.php
r919 r920 17 17 if ( ! isset( self::$trac_ticket_cache[ $trac_url ] ) ) { 18 18 // In case you're running the tests offline, keep track of open tickets. 19 $file = DIR_TESTDATA . '/.trac-ticket-cache.' . str_replace( array( 'http://', 'https://' ), '', $trac_url ); 19 $file = DIR_TESTDATA . '/.trac-ticket-cache.' . str_replace( array( 'http://', 'https://', '/' ), array( '', '', '-' ), rtrim( $trac_url, '/' ) ); 20 var_dump( $file ); return; 20 21 $tickets = @file_get_contents( $trac_url . '/query?status=%21closed&format=csv&col=id' ); 21 22 // Check if our HTTP request failed.
Note: See TracChangeset
for help on using the changeset viewer.