Version 14.66.1

This commit is contained in:
Antonio Cañas Vargas 2015-01-24 20:04:45 +01:00
parent ce2ac64ac0
commit d07472ae74
2 changed files with 4 additions and 1 deletions

View File

@ -39,11 +39,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.66 (2015/01/24)" #define Log_PLATFORM_VERSION "SWAD 14.66.1 (2015/01/24)"
// Number of lines (includes comments but not blank lines) has been got with the following command: // Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h | tail -1 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h | tail -1
/* /*
Version 14.66.1: Jan 24, 2015 Fixed bug in clipboard. (175404 lines)
Version 14.66: Jan 24, 2015 Changes in clipboard table. (175401 lines) Version 14.66: Jan 24, 2015 Changes in clipboard table. (175401 lines)
13 changes necessary in database: 13 changes necessary in database:
DROP INDEX FileBrowser ON clipboard; DROP INDEX FileBrowser ON clipboard;

View File

@ -5918,6 +5918,8 @@ static bool Brw_CheckIfClipboardIsInThisTree (void)
if (Gbl.FileBrowser.Clipboard.Cod == Gbl.CurrentCrs.Grps.GrpCod) if (Gbl.FileBrowser.Clipboard.Cod == Gbl.CurrentCrs.Grps.GrpCod)
return true; // I am in the group of the clipboard return true; // I am in the group of the clipboard
break; break;
case Brw_FILE_BRW_BRIEFCASE_USR:
return true;
default: default:
break; break;
} }