Changeset 2999
- Timestamp:
- 04/22/2016 07:25:24 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/tools/class-svn.php
r2994 r2999 33 33 $esc_destination = escapeshellarg( $destination ); 34 34 35 $output = exec( "svn export $esc_options $esc_url $esc_destination 2>&1" );35 $output = shell_exec( "svn export $esc_options $esc_url $esc_destination 2>&1" ); 36 36 if ( preg_match( '/Exported revision (?P<revision>\d+)[.]/i', $output, $m ) ) { 37 37 $revision = (int) $m['revision']; … … 61 61 $esc_url = escapeshellarg( $url ); 62 62 63 $output = exec( "svn ls $esc_options $esc_url 2>&1" );63 $output = shell_exec( "svn ls $esc_options $esc_url 2>&1" ); 64 64 65 65 $errors = self::parse_svn_errors( $output );
Note: See TracChangeset
for help on using the changeset viewer.