Changeset 32962
- Timestamp:
- 06/27/2015 12:42:43 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r32924 r32962 493 493 * @abstract 494 494 * @param string $dir The new current directory. 495 * @return bool Returns true on success or false on failure.495 * @return bool|string 496 496 */ 497 497 public function chdir( $dir ) { … … 507 507 * @param mixed $group A group name or number. 508 508 * @param bool $recursive Optional. If set True changes file group recursively. Defaults to False. 509 * @return bool Returns true on success or false on failure.509 * @return bool|string 510 510 */ 511 511 public function chgrp( $file, $group, $recursive = false ) { … … 521 521 * @param int $mode Optional. The permissions as octal number, usually 0644 for files, 0755 for dirs. 522 522 * @param bool $recursive Optional. If set True changes file group recursively. Defaults to False. 523 * @return bool Returns true on success or false on failure.523 * @return bool|string 524 524 */ 525 525 public function chmod( $file, $mode = false, $recursive = false ) {
Note: See TracChangeset
for help on using the changeset viewer.