From af03a4e197f19676175913f9903659302cb23200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Sat, 19 Nov 2016 20:37:01 +0100 Subject: [PATCH] Version 16.64.28 --- swad_changelog.h | 3 ++- swad_plugin.c | 18 ++++++++++++------ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index 50526e62d..3e13b36f9 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -170,13 +170,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.64.27 (2016-11-19)" +#define Log_PLATFORM_VERSION "SWAD 16.64.28 (2016-11-19)" #define CSS_FILE "swad16.60.1.css" #define JS_FILE "swad16.46.1.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 16.64.28: Nov 19, 2016 Input fields required in new plugin. (207364 lines) Version 16.64.27: Nov 19, 2016 Input fields required in new institutional link. (207357 lines) Version 16.64.26: Nov 19, 2016 Input fields required in new banner form. (207353 lines) Version 16.64.25: Nov 19, 2016 Input fields required in new email domain form. (207348 lines) diff --git a/swad_plugin.c b/swad_plugin.c index d54919717..2de186870 100644 --- a/swad_plugin.c +++ b/swad_plugin.c @@ -872,42 +872,48 @@ static void Plg_PutFormToCreatePlugin (void) /***** Plugin name *****/ fprintf (Gbl.F.Out,"" "" + " size=\"10\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Plg_MAX_LENGTH_PLUGIN_NAME,Plg->Name); /***** Plugin description *****/ fprintf (Gbl.F.Out,"" "" + " size=\"30\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Plg_MAX_LENGTH_PLUGIN_DESCRIPTION,Plg->Description); /***** Plugin logo *****/ fprintf (Gbl.F.Out,"" "" + " size=\"4\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Plg_MAX_LENGTH_PLUGIN_LOGO,Plg->Logo); /***** Plugin application key *****/ fprintf (Gbl.F.Out,"" "" + " size=\"16\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Plg_MAX_LENGTH_PLUGIN_APP_KEY,Plg->AppKey); /***** Plugin URL *****/ fprintf (Gbl.F.Out,"" "" + " size=\"15\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "", Cns_MAX_LENGTH_WWW,Plg->URL); /***** Plugin IP address *****/ fprintf (Gbl.F.Out,"" "" + " size=\"10\" maxlength=\"%u\" value=\"%s\"" + " required=\"required\" />" "" "", Cns_MAX_LENGTH_IP,Plg->IP);