diff options
author | rvelices <rv-github@modusoptimus.com> | 2012-02-18 20:46:46 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2012-02-18 20:46:46 +0000 |
commit | a8938827898ed40d35f25b055a72a41a2c1567ef (patch) | |
tree | 4faaa2424bf609938dd526dc6c99cae8d25fdbf7 /notification.php | |
parent | 3ef9e856c36e7b7b8530beb52c8667945a645cad (diff) |
- multisize thumb longest side can be smaller than the square size
- remove unused css, shorten/optimize php called very often (at least theoretically should be faster)
git-svn-id: http://piwigo.org/svn/trunk@13240 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'notification.php')
-rw-r--r-- | notification.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/notification.php b/notification.php index beb91b4da..0be9aa8b7 100644 --- a/notification.php +++ b/notification.php @@ -28,6 +28,29 @@ define('PHPWG_ROOT_PATH','./'); include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); +/** + * search an available feed_id + * + * @return string feed identifier + */ +function find_available_feed_id() +{ + while (true) + { + $key = generate_key(50); + $query = ' +SELECT COUNT(*) + FROM '.USER_FEED_TABLE.' + WHERE id = \''.$key.'\' +;'; + list($count) = pwg_db_fetch_row(pwg_query($query)); + if (0 == $count) + { + return $key; + } + } +} + // +-----------------------------------------------------------------------+ // | Check Access and exit when user status is not ok | // +-----------------------------------------------------------------------+ |