diff --git a/swad_action.c b/swad_action.c index 0384674d7..e178f1a58 100644 --- a/swad_action.c +++ b/swad_action.c @@ -4354,12 +4354,6 @@ void Act_FormStartId (Act_Action_t NextAction,const char *Id) Act_FormStartInternal (NextAction,true,Id,NULL); // Do put now parameter location (if no open session) } -void Act_FormStartIdAnchor (Act_Action_t NextAction,const char *Id,const char *Anchor) - { - Gbl.Form.Num++; // Initialized to -1. The first time it is incremented, it will be equal to 0 - Act_FormStartInternal (NextAction,true,Id,Anchor); // Do put now parameter location (if no open session) - } - // Id can not be NULL static void Act_FormStartInternal (Act_Action_t NextAction,bool PutParameterLocationIfNoSesion,const char *Id,const char *Anchor) { diff --git a/swad_action.h b/swad_action.h index e2d46e086..dfad536d0 100644 --- a/swad_action.h +++ b/swad_action.h @@ -1431,7 +1431,6 @@ void Act_FormStartUnique (Act_Action_t NextAction); void Act_FormStartAnchor (Act_Action_t NextAction,const char *Anchor); void Act_FormStartUniqueAnchor (Act_Action_t NextAction,const char *Anchor); void Act_FormStartId (Act_Action_t NextAction,const char *Id); -void Act_FormStartIdAnchor (Act_Action_t NextAction,const char *Id,const char *Anchor); void Act_SetParamsForm (char *Params,Act_Action_t NextAction,bool PutParameterLocationIfNoSesion); void Act_FormEnd (void); void Act_LinkFormSubmit (const char *Title,const char *LinkStyle); diff --git a/swad_changelog.h b/swad_changelog.h index 16b30fa8e..3310bae65 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -127,13 +127,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.113 (2016-01-14)" +#define Log_PLATFORM_VERSION "SWAD 15.113.1 (2016-01-14)" #define CSS_FILE "swad15.111.css" #define JS_FILE "swad15.111.js" // 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 sql/swad*.sql | tail -1 /* + Version 15.113.1: Jan 14, 2016 Remove unused function. (192675 lines) Version 15.113: Jan 14, 2016 Code refactoring related to forms with unique identifiers. Use unique identifiers in forms of lists of connected users. (192680 lines) Version 15.112: Jan 14, 2016 Fixed bugs in user's timeline.