tweaky tweak, plus add share tracking db, and don't show acl for guest postings, and experiment with compressing pcss on the fly
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
define( 'UPDATE_VERSION' , 1033 );
|
||||
define( 'UPDATE_VERSION' , 1034 );
|
||||
|
||||
/**
|
||||
*
|
||||
@@ -410,3 +410,26 @@ KEY `xchan` (`xchan`)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
function update_r1033() {
|
||||
$r = q("CREATE TABLE if not exists `shares` (
|
||||
`share_id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||
`share_type` INT NOT NULL DEFAULT '0',
|
||||
`share_target` INT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`share_xchan` CHAR( 255 ) NOT NULL DEFAULT '',
|
||||
KEY `share_type` (`share_type`),
|
||||
KEY `share_target` (`share_target`),
|
||||
KEY `share_xchan` (`share_xchan`)
|
||||
) ENGINE = MYISAM DEFAULT CHARSET = utf8");
|
||||
|
||||
// if these fail don't bother reporting it
|
||||
|
||||
q("drop table gcign");
|
||||
q("drop table gcontact");
|
||||
q("drop table glink");
|
||||
|
||||
if($r)
|
||||
return UPDATE_SUCCESS;
|
||||
return UPDATE_FAILED;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user