Make WordPress Core


Ignore:
Timestamp:
11/19/2006 07:56:05 AM (19 years ago)
Author:
ryan
Message:

Remove trailing spaces and convert spaces to tabs. Props Nazgul. fixes #986

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/cache.php

    r4486 r4495  
    6666
    6767    function acquire_lock() {
    68         // Acquire a write lock. 
     68        // Acquire a write lock.
    6969        $this->mutex = @fopen($this->cache_dir.$this->flock_filename, 'w');
    7070        if ( false == $this->mutex)
     
    238238            # Get indexed directory from stack
    239239            $dir = $stack[$index];
    240      
     240
    241241            $dh = @ opendir($dir);
    242242            if (!$dh)
    243243                return false;
    244      
     244
    245245            while (($file = @ readdir($dh)) !== false) {
    246246                if ($file == '.' or $file == '..')
Note: See TracChangeset for help on using the changeset viewer.