diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-23 10:41:55 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-23 10:41:55 -0400 |
commit | 803f79e0912c4a526a16fdda4809277d8ad3195d (patch) | |
tree | 61dd6d3a8fc5368ad86b5d38a5d177ae9cd2d9f8 /update.php | |
parent | 8e29669b81f8df724bb77e2e2b6eff330a17cbec (diff) | |
parent | ce8cfb7b0531e72fe28b3a6a6440016e482bd016 (diff) | |
download | volse-hubzilla-803f79e0912c4a526a16fdda4809277d8ad3195d.tar.gz volse-hubzilla-803f79e0912c4a526a16fdda4809277d8ad3195d.tar.bz2 volse-hubzilla-803f79e0912c4a526a16fdda4809277d8ad3195d.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master: (25 commits)
diabook: theme.php remove code duplication last photos check for user "hidewall" remove unneeded regex move js code to close popup in main.js (missing stop event propagation in popup links)
user settings: don't show emoticons
fix in css right_aside
small fix
fix 1024resolution
add right_aside to theme diabook
ability to change tags in edited posts
normalise comparison link on delegation page
quattro(-green) styling the 'filed under: remove' text
it's only item.filer ;-)
non static filer text
new lines removed
removed some new lines to cut down number of changed files
removed unneccessary stuff
removed problem from previous commit
tests for the template engine
adding filer functionality to quattro(-green)
missing tooltip for "file as"
prevent re-registrations using a deleted username - not an issue with Friendica but could create a serious privacy issue with federated platforms
add file_as-option to diabook-derivates
...
* master:
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/update.php b/update.php index 6a685a6ff..a69742a94 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1132 ); +define( 'UPDATE_VERSION' , 1133 ); /** * @@ -1127,3 +1127,12 @@ function update_1131() { } +function update_1132() { + q("CREATE TABLE IF NOT EXISTS `userd` ( +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`username` CHAR( 255 ) NOT NULL, +INDEX ( `username` ) +) ENGINE = MYISAM "); + +} + |