Changeset 20139


Ignore:
Timestamp:
Jan 14, 2013, 3:39:31 PM (11 years ago)
Author:
nikrou
Message:

Fix issue with cache directory key in config parameters array.

Location:
extensions/user_tags
Files:
40 edited

Legend:

Unmodified
Added
Removed
  • extensions/user_tags/CHANGELOG

    r11770 r20139  
     1User Tags 0.6.2 - 2013-01-14
     2================================
     3* Fix issue with cache directory key in config parameters array.
     4
    15User Tags 0.6.1 - 2011-07-18
    26================================
  • extensions/user_tags/admin.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/include/autoload.inc.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/include/constants.inc.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/include/default_values.inc.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/include/t4u_config.class.php

    r11770 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
     
    6060
    6161  private function get_config_file_dir() {
    62     return $GLOBALS['conf']['local_data_dir'].'/plugins/';
     62    return $GLOBALS['conf']['data_location'].'/plugins/';
    6363  }
    6464
  • extensions/user_tags/include/t4u_content.class.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/include/t4u_ws.class.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/init.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/de_DE/help/index.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/de_DE/index.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/de_DE/plugin.lang.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/en_UK/help/index.php

    r6806 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/en_UK/index.php

    r6798 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/en_UK/plugin.lang.php

    r11081 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/es_ES/help/index.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/es_ES/index.php

    r6799 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/es_ES/plugin.lang.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/fr_FR/help/index.php

    r6806 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/fr_FR/index.php

    r6798 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/fr_FR/plugin.lang.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/hu_HU/help/index.php

    r6809 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/hu_HU/index.php

    r6804 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/hu_HU/plugin.lang.php

    r6814 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/it_IT/help/index.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/it_IT/index.php

    r6929 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/it_IT/plugin.lang.php

    r11825 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/lv_LV/help/index.php

    r8267 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/lv_LV/index.php

    r8267 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/lv_LV/plugin.lang.php

    r8267 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
     
    1919// | MA 02110-1301 USA.                                                    |
    2020// +-----------------------------------------------------------------------+
    21 
    2221
    2322$lang['Click to add tags'] = 'Uzklikšķināt, lai pievienotu tagu';
  • extensions/user_tags/language/nb_NO/help/index.php

    r9227 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/nb_NO/index.php

    r9227 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/nb_NO/plugin.lang.php

    r9227 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/templates/plugin.lang.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/zh_CN/help/index.php

    r9573 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/zh_CN/index.php

    r9573 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/language/zh_CN/plugin.lang.php

    r9573 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010 Nicolas Roudaire             http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
  • extensions/user_tags/main.inc.php

    r11770 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
     
    2222/*
    2323Plugin Name: User Tags
    24 Version: 0.6.1
     24Version: 0.6.2
    2525Description: Allow visitors to add tag to images
    2626Plugin URI: http://piwigo.org/ext/extension_view.php?eid=441
  • extensions/user_tags/maintain.inc.php

    r11081 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
     
    3434
    3535function plugin_uninstall($plugin_id) {
    36   $config_file = $GLOBALS['conf']['local_data_dir'].'/plugins/';
     36  $config_file = $GLOBALS['conf']['data_location'].'/plugins/';
    3737  $config_file .= basename(dirname(__FILE__)).'.dat';
    3838  if (file_exists($config_file)) {
  • extensions/user_tags/public.php

    r11741 r20139  
    33// | User Tags  - a plugin for Piwigo                                      |
    44// +-----------------------------------------------------------------------+
    5 // | Copyright(C) 2010-2011 Nicolas Roudaire        http://www.nikrou.net  |
     5// | Copyright(C) 2010-2013 Nicolas Roudaire        http://www.nikrou.net  |
    66// +-----------------------------------------------------------------------+
    77// | This program is free software; you can redistribute it and/or modify  |
    8 // | it under the terms of the GNU General Public License as published by  |
    9 // | the Free Software Foundation                                          |
     8// | it under the terms of the GNU General Public License version2 as      |
     9// | published by the Free Software Foundation                             |
    1010// |                                                                       |
    1111// | This program is distributed in the hope that it will be useful, but   |
Note: See TracChangeset for help on using the changeset viewer.