Version 16.232.8

This commit is contained in:
Antonio Cañas Vargas 2017-06-03 21:48:02 +02:00
parent b547c93298
commit f3c66f9317
2 changed files with 10 additions and 11 deletions

View File

@ -225,22 +225,27 @@
// TODO: Green lock in documents is not shown when name is shortened (see OpenSWAD -> Creative Commons -> Files -> Documents)
// TODO: Fix bug: An URL like https://openswad.org/es?a gives Internal Server Error
// TODO: Limit length of very big institution name in record card
// TODO: Limit lenght of very big institution name in record card
// TODO: Link names are too short ==> add more length, for example: "A guide to building and understanding the physics of Water Rockets"
// TODO: Fix bug: Error when a link end in a dot. Example: "A guide to building..." --> "A guide to building._..url" (two dots)
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.232.7 (2017-06-03)"
#define Log_PLATFORM_VERSION "SWAD 16.232.8 (2017-06-03)"
#define CSS_FILE "swad16.226.css"
#define JS_FILE "swad16.206.3.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.232.7: Jun 03, 2017 Changed contextual links in institutional links and banners. (? lines)
Version 16.232.8: Jun 03, 2017 Fix bug (an URL like https://openswad.org/es?a gived Internal Server Error). (221147 lines)
Version 16.232.7: Jun 03, 2017 Changed contextual links in institutional links and banners. (221148 lines)
Copy the following icon to icon public directory:
sudo cp icon/link64x64.gif /var/www/html/swad/icon/
Version 16.232.6: Jun 03, 2017 Changed layout of edition of banners. (221123 lines)
Version 16.232.5: Jun 03, 2017 Changed layout of edition of institutional links. (221108 lines)
Version 16.232.4: Jun 01, 2017 Changed alert when session expired. (221092 lines)

View File

@ -67,7 +67,7 @@ extern struct Globals Gbl;
/****************************** Main function ********************************/
/*****************************************************************************/
int main (int argc, char *argv[])
int main (void)
{
extern struct Act_Actions Act_Actions[Act_NUM_ACTIONS];
extern const char *Txt_You_dont_have_permission_to_perform_this_action;
@ -96,12 +96,6 @@ int main (int argc, char *argv[])
exit (0);
}
if (argc > 1)
{
fprintf (stdout,"Call %s without parameters",argv[0]);
return -1;
}
/***** Initialize global variables *****/
Gbl_InitializeGlobals ();
Cfg_GetConfigFromFile ();