diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-03-27 20:45:37 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-03-27 20:45:37 +0000 |
commit | 553f4533c081e38e65ffb9981063d944fc58f431 (patch) | |
tree | 6909a29db9ef99be1b83cd21449faacc7c2159ed /lib/migrate.php | |
parent | b201e5152840406f0b5de9a403fd8f6ceedd3636 (diff) | |
download | nextcloud-server-553f4533c081e38e65ffb9981063d944fc58f431.tar.gz nextcloud-server-553f4533c081e38e65ffb9981063d944fc58f431.zip |
look for migrate.php in appinfo folder
Diffstat (limited to 'lib/migrate.php')
-rw-r--r-- | lib/migrate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrate.php b/lib/migrate.php index 718dc57b9f3..6b1497d1d0c 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -64,7 +64,7 @@ class OC_Migrate{ $apps = OC_App::getAllApps(); foreach($apps as $app){ - $path = OC::$SERVERROOT . '/apps/' . $app . '/lib/migrate.php'; + $path = OC::$SERVERROOT . '/apps/' . $app . '/appinfo/migrate.php'; if( file_exists( $path ) ){ include( $path ); } |