Ignore:
Timestamp:
Apr 23, 2011, 6:28:09 PM (13 years ago)
Author:
grum
Message:

bug:2144 ; Compatibility with Piwigo 2.2
bug:2181 ; random picture : problem with double-quote "
bug:2182 ; links and personnal blocks : double quote are not correctly managed
bug:2166 ; Error message on gallery side about create_table_add_character_set()

Location:
extensions/AMenuManager
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/AMenuManager/amm_install.class.inc.php

    r10247 r10602  
    6363  PRIMARY KEY  (`id`),
    6464  KEY `order_key` (`position`)
    65 )",
     65) DEFAULT CHARACTER SET ".DB_CHARSET." COLLATE ".DB_COLLATE,
    6666
    6767"CREATE TABLE  `".$this->tables['personalised']."` (
     
    7070  `nfo` varchar(255) NOT NULL default '',
    7171  PRIMARY KEY  (`id`)
    72 )",
     72) DEFAULT CHARACTER SET ".DB_CHARSET." COLLATE ".DB_COLLATE,
    7373
    7474"CREATE TABLE `".$this->tables['personalised_langs']."` (
     
    7878  `content` TEXT  NOT NULL,
    7979  PRIMARY KEY (`id`, `lang`)
    80 )",
     80) DEFAULT CHARACTER SET ".DB_CHARSET." COLLATE ".DB_COLLATE,
    8181
    8282"CREATE TABLE `".$this->tables['blocks']."` (
     
    8787  PRIMARY KEY (`id`),
    8888  INDEX `byOrder`(`order`)
    89 )"
     89) DEFAULT CHARACTER SET ".DB_CHARSET." COLLATE ".DB_COLLATE
    9090
    9191);
    9292      //$table_def array
    93       $tables_def = create_table_add_character_set($tables_def);
     93      //$tables_def = create_table_add_character_set($tables_def);
    9494      $result=$this->tablef->create($tables_def);
    9595      unset($tables_def);
  • extensions/AMenuManager/main.inc.php

    r10247 r10602  
    173173|         |            |     correctly managed
    174174|         |            |
     175|         |            | ===> note: the release 3.0.3 was never officially
     176|         |            |            published
     177|         |            |
    175178| 3.1.0   | 2011/04/10 | * mantis: bug 2144
    176179|         |            |   . Compatibility with Piwigo 2.2
     180|         |            |
     181|         |            | * mantis: bug 2166 (fixed in 3.0.3)
     182|         |            |   . Error message on gallery side about
     183|         |            |             create_table_add_character_set()
     184|         |            |
     185|         |            | * mantis: bug 2182 (fixed in 3.0.3)
     186|         |            |   . links and personnal blocks : double quote are not
     187|         |            |     correctly managed
     188|         |            |
     189|         |            |
     190|         |            |
     191|         |            |
     192|         |            |
     193|         |            |
    177194|         |            |
    178195|         |            |
Note: See TracChangeset for help on using the changeset viewer.