aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2013-02-07 21:17:08 +0000
committerrvelices <rv-github@modusoptimus.com>2013-02-07 21:17:08 +0000
commitec50a59f75f8799b50d178ce4c7e8f4a14906874 (patch)
tree1cebab2ab3038d5fdf1459ba97db1da645959e11 /include
parente86d61a4d222ae36be05a9fc8cc955d9cde332cc (diff)
replaced page_messages.php with a function to call
git-svn-id: http://piwigo.org/svn/trunk@20609 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/functions_html.inc.php22
-rw-r--r--include/page_messages.php42
2 files changed, 22 insertions, 42 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php
index b29f214ef..5b6a5079b 100644
--- a/include/functions_html.inc.php
+++ b/include/functions_html.inc.php
@@ -614,4 +614,26 @@ function get_element_url_protection_handler($url, $infos)
return get_action_url($infos['id'], 'e', false);
}
+
+function flush_page_messages()
+{
+ global $template, $page;
+ if ($template->get_template_vars('page_refresh') === null)
+ {
+ foreach (array('errors','infos','warnings') as $mode)
+ {
+ if (isset($_SESSION['page_'.$mode]))
+ {
+ $page[$mode] = array_merge($page[$mode], $_SESSION['page_'.$mode]);
+ unset($_SESSION['page_'.$mode]);
+ }
+
+ if (count($page[$mode]) != 0)
+ {
+ $template->assign($mode, $page[$mode]);
+ }
+ }
+ }
+}
+
?> \ No newline at end of file
diff --git a/include/page_messages.php b/include/page_messages.php
deleted file mode 100644
index 7da0a71f6..000000000
--- a/include/page_messages.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php
-// +-----------------------------------------------------------------------+
-// | Piwigo - a PHP based photo gallery |
-// +-----------------------------------------------------------------------+
-// | Copyright(C) 2008-2013 Piwigo Team http://piwigo.org |
-// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
-// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
-// +-----------------------------------------------------------------------+
-// | This program is free software; you can redistribute it and/or modify |
-// | it under the terms of the GNU General Public License as published by |
-// | the Free Software Foundation |
-// | |
-// | This program is distributed in the hope that it will be useful, but |
-// | WITHOUT ANY WARRANTY; without even the implied warranty of |
-// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
-// | General Public License for more details. |
-// | |
-// | You should have received a copy of the GNU General Public License |
-// | along with this program; if not, write to the Free Software |
-// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
-// | USA. |
-// +-----------------------------------------------------------------------+
-
-// messages only if no redirection
-if ($template->get_template_vars('page_refresh') === null)
-{
- foreach (array('errors','infos','warnings') as $mode)
- {
- if (isset($_SESSION['page_'.$mode]))
- {
- $page[$mode] = array_merge($page[$mode], $_SESSION['page_'.$mode]);
- unset($_SESSION['page_'.$mode]);
- }
-
- if (count($page[$mode]) != 0)
- {
- $template->assign($mode, $page[$mode]);
- }
- }
-}
-
-?> \ No newline at end of file