Make WordPress Core


Ignore:
Timestamp:
01/18/2010 08:34:48 PM (15 years ago)
Author:
ryan
Message:

Coding standards, space after if

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-filesystem-ssh2.php

    r12723 r12752  
    172172    function cwd() {
    173173        $cwd = $this->run_command('pwd');
    174         if( $cwd )
     174        if ( $cwd )
    175175            $cwd = trailingslashit($cwd);
    176176        return $cwd;
     
    240240
    241241    function copy($source, $destination, $overwrite = false ) {
    242         if( ! $overwrite && $this->exists($destination) )
     242        if ( ! $overwrite && $this->exists($destination) )
    243243            return false;
    244244        $content = $this->get_contents($source);
    245         if( false === $content)
     245        if ( false === $content)
    246246            return false;
    247247        return $this->put_contents($destination, $content);
Note: See TracChangeset for help on using the changeset viewer.