Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
fplanque committed Jan 17, 2017
1 parent b5adbc7 commit 64ad897
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion inc/collections/model/_collections.install.php
Expand Up @@ -514,7 +514,7 @@
) ENGINE = innodb DEFAULT CHARSET = $db_storage_charset" ),

'T_temporary_ID' => array(
'Creating table for temporary ID',
'Creating table for temporary IDs (used for uploads on new posts or messages)',
"CREATE TABLE T_temporary_ID (
tmp_ID INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
tmp_type VARCHAR(32) COLLATE ascii_general_ci NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion inc/links/model/_linkitem.class.php
Expand Up @@ -29,7 +29,7 @@ class LinkItem extends LinkOwner
* Constructor
*
* @param object Item
* @param integer ID of temporary object from table T_temporary_ID (Used to link files to new creating item)
* @param integer ID of temporary object from table T_temporary_ID (used for uploads on new items)
*/
function __construct( $Item, $tmp_ID = NULL )
{
Expand Down
2 changes: 1 addition & 1 deletion inc/links/model/_linkmessage.class.php
Expand Up @@ -29,7 +29,7 @@ class LinkMessage extends LinkOwner
* Constructor
*
* @param object Message
* @param integer ID of temporary object from table T_temporary_ID (Used to link files to new creating message)
* @param integer ID of temporary object from table T_temporary_ID (used for uploads on new messages)
*/
function __construct( $Message, $tmp_ID = NULL )
{
Expand Down
4 changes: 2 additions & 2 deletions install/_functions_evoupgrade.php
Expand Up @@ -7795,7 +7795,7 @@ function add_basic_widget_11670( $blog_ID, $container_name, $code, $type, $order
upg_task_end();
}

if( upg_task_start( 12070, 'Create table for temporary ID...' ) )
if( upg_task_start( 12070, 'Create table for temporary IDs...' ) )
{ // part of 6.8.0-alpha
db_create_table( 'T_temporary_ID', '
tmp_ID INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
Expand Down Expand Up @@ -8096,7 +8096,7 @@ function add_basic_widget_11670( $blog_ID, $container_name, $code, $type, $order
upg_task_end();
}

if( upg_task_start( 12145, 'Upgrade links table...' ) )
if( upg_task_start( 12145, 'Upgrade Temporary IDs table...' ) )
{ // part of 6.8.4-stable
$DB->query( 'ALTER TABLE T_temporary_ID
ADD tmp_coll_ID INT(11) UNSIGNED NULL' );
Expand Down

0 comments on commit 64ad897

Please sign in to comment.