Merge remote branch 'upstream/master'

Conflicts:
	update.php
This commit is contained in:
Michael Vogel
2012-08-02 00:21:14 +02:00
316 changed files with 18693 additions and 1540 deletions

View File

@@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1153 );
define( 'UPDATE_VERSION' , 1154 );
/**
*
@@ -1336,3 +1336,10 @@ function update_1152() {
return UPDATE_FAILED;
return UPDATE_SUCCESS;
}
function update_1153() {
$r = q("ALTER TABLE `hook` ADD `priority` INT(11) UNSIGNED NOT NULL DEFAULT '0'");
if(!$r) return UPDATE_FAILED;
return UPDATE_SUCCESS;
}