<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=LiveUser_Admin</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/15434" />
      <rdf:li rdf:resource="http://pear.php.net/bug/15433" />
      <rdf:li rdf:resource="http://pear.php.net/bug/11432" />
      <rdf:li rdf:resource="http://pear.php.net/bug/9706" />
      <rdf:li rdf:resource="http://pear.php.net/bug/7041" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/15434">
      <title>LiveUser_Admin: Bug 15434 [Open] With complex perm container, unimplyRight removes more records then it should.</title>
      <link>http://pear.php.net/bugs/15434</link>
      <content:encoded><![CDATA[<pre>LiveUser_Admin Bug
Reported by pcharb
2008-12-29T05:25:32+00:00
PHP: 5.2.4 OS: Linux Package Version: 0.3.9

Description:
------------
When you do:
$data = array('right_id' =&gt; 10,'implied_right_id' =&gt; 16);
$LUA-&gt;perm-&gt;unimplyRight($data);

The following sql is issued:
DELETE FROM liveuser_right_implied
 WHERE implied_right_id IN (16)

The right_id in the $data array is ignored. This is a problem when more then one right, implies a particular right.

Test script:
---------------
$data = array('application_define_name' =&gt; 'mytestapp');
$appId = $LUA-&gt;perm-&gt;addApplication($data);

$data = array('application_id' =&gt; $appId,'area_define_name' =&gt; 'mytestarea');
$areaId = $LUA-&gt;perm-&gt;addArea($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'super1');
$super1Id = $LUA-&gt;perm-&gt;addRight($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'super2');
$super2Id = $LUA-&gt;perm-&gt;addRight($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'implied');
$impliedId = $LUA-&gt;perm-&gt;addRight($data);

$data = array('right_id' =&gt; $super1Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;implyRight($data);

$data = array('right_id' =&gt; $super2Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;implyRight($data);

$data = array('right_id' =&gt; $super2Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;unimplyRight($data);

echo &quot;right_id: $super1Id - implied_right_id: $impliedId&quot;;


Expected result:
----------------
Only one record is deleted from the database, we have one record remaining record, namely $super1Id implies impliedId.

Actual result:
--------------
All records that have the same implied_right_id are deleted.</pre>]]></content:encoded>
      <description><![CDATA[<pre>LiveUser_Admin Bug
Reported by pcharb
2008-12-29T05:25:32+00:00
PHP: 5.2.4 OS: Linux Package Version: 0.3.9

Description:
------------
When you do:
$data = array('right_id' =&gt; 10,'implied_right_id' =&gt; 16);
$LUA-&gt;perm-&gt;unimplyRight($data);

The following sql is issued:
DELETE FROM liveuser_right_implied
 WHERE implied_right_id IN (16)

The right_id in the $data array is ignored. This is a problem when more then one right, implies a particular right.

Test script:
---------------
$data = array('application_define_name' =&gt; 'mytestapp');
$appId = $LUA-&gt;perm-&gt;addApplication($data);

$data = array('application_id' =&gt; $appId,'area_define_name' =&gt; 'mytestarea');
$areaId = $LUA-&gt;perm-&gt;addArea($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'super1');
$super1Id = $LUA-&gt;perm-&gt;addRight($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'super2');
$super2Id = $LUA-&gt;perm-&gt;addRight($data);

$data = array('area_id' =&gt; $areaId, 'right_define_name' =&gt; 'implied');
$impliedId = $LUA-&gt;perm-&gt;addRight($data);

$data = array('right_id' =&gt; $super1Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;implyRight($data);

$data = array('right_id' =&gt; $super2Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;implyRight($data);

$data = array('right_id' =&gt; $super2Id,'implied_right_id' =&gt; $impliedId);
$LUA-&gt;perm-&gt;unimplyRight($data);

echo &quot;right_id: $super1Id - implied_right_id: $impliedId&quot;;


Expected result:
----------------
Only one record is deleted from the database, we have one record remaining record, namely $super1Id implies impliedId.

Actual result:
--------------
All records that have the same implied_right_id are deleted.</pre>]]></description>
      <dc:date>2008-12-29T05:25:32+00:00</dc:date>
      <dc:creator>pierre2543 &amp;#x61;&amp;#116; hotmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>LiveUser_Admin Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/15433">
      <title>LiveUser_Admin: Bug 15433 [Open] With complex Perm container, removeUser doesn't clean up area_admin_areas</title>
      <link>http://pear.php.net/bugs/15433</link>
      <content:encoded><![CDATA[<pre>LiveUser_Admin Bug
Reported by pcharb
2008-12-29T05:00:24+00:00
PHP: 5.2.4 OS: Linux Package Version: 0.3.9

Description:
------------
The Complex perm container should implement removeUser to clean up the link to the 

Test script:
---------------
$data = array('application_define_name' =&gt; 'mytestapp');
$appId = $LUA-&gt;perm-&gt;addApplication($data);

$data = array('application_id' =&gt; $appId,'area_define_name' =&gt; 'mytestarea');
$areaId = $LUA-&gt;perm-&gt;addArea($data);

$data = array('handle'=&gt;'mytestuser','passwd'=&gt;'secret','perm_type'=&gt;3);
$userId = $LUA-&gt;addUser($data);

echo &quot;userId: $userId - areaId: $areaId&quot;;

$data = array('area_id' =&gt; $areaId,'perm_user_id' =&gt; $userId);
$LUA-&gt;perm-&gt;addAreaAdmin($data);

$LUA-&gt;removeUser($userId);

Expected result:
----------------
The record created in the area_admin_areas has been deleted.

Actual result:
--------------
The record create in the area_admin_areas is not deleted.</pre>]]></content:encoded>
      <description><![CDATA[<pre>LiveUser_Admin Bug
Reported by pcharb
2008-12-29T05:00:24+00:00
PHP: 5.2.4 OS: Linux Package Version: 0.3.9

Description:
------------
The Complex perm container should implement removeUser to clean up the link to the 

Test script:
---------------
$data = array('application_define_name' =&gt; 'mytestapp');
$appId = $LUA-&gt;perm-&gt;addApplication($data);

$data = array('application_id' =&gt; $appId,'area_define_name' =&gt; 'mytestarea');
$areaId = $LUA-&gt;perm-&gt;addArea($data);

$data = array('handle'=&gt;'mytestuser','passwd'=&gt;'secret','perm_type'=&gt;3);
$userId = $LUA-&gt;addUser($data);

echo &quot;userId: $userId - areaId: $areaId&quot;;

$data = array('area_id' =&gt; $areaId,'perm_user_id' =&gt; $userId);
$LUA-&gt;perm-&gt;addAreaAdmin($data);

$LUA-&gt;removeUser($userId);

Expected result:
----------------
The record created in the area_admin_areas has been deleted.

Actual result:
--------------
The record create in the area_admin_areas is not deleted.</pre>]]></description>
      <dc:date>2008-12-29T05:00:24+00:00</dc:date>
      <dc:creator>pierre2543 &amp;#x61;&amp;#116; hotmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>LiveUser_Admin Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/11432">
      <title>LiveUser_Admin: Bug 11432 [Open] Adding User on Multiple containers</title>
      <link>http://pear.php.net/bugs/11432</link>
      <content:encoded><![CDATA[<pre>LiveUser_Admin Bug
Reported by cedric
2007-06-25T13:28:51+00:00
PHP: 5.2.0 OS: XP Package Version: 0.3.9

Description:
------------
When I attempt to create a new user with one DB for authContainers and one for permContainer LiveUser_Admin make the auth request on the permContainer.

If I add setAdminAuthContainer it Return always an error

Test script:
---------------
$LUA =&amp; LiveUser_Admin::factory($conf, 'FR');
$LUA-&gt;init();
$data = array('handle'    =&gt; 'cedric',
                  'passwd'    =&gt; 'azc+XOC1987',
				  'name' =&gt; 'CÃ©dric Lombardot',
                  'mail'     =&gt; 'cedric.lombardot@spyrit.net',
                  'is_active' =&gt; '1',
                  'perm_type' =&gt; LIVEUSER_MASTERADMIN_TYPE_ID 
                  );

$userId = $LUA-&gt;addUser($data);
print_r( $LUA-&gt;getErrors());


Actual result:
--------------
========ERROR MESSAGE ====================================
Array ( [0] =&gt; Array ( [code] =&gt; -4 [params] =&gt; Array ( [reason] =&gt; MDB2 Error: no such table-_doQuery: [Error message: Could not execute statement] [Last executed query: INSERT INTO liveuser_users (handle, passwd, name, mail, is_active, auth_user_id) VALUES ('cedric', '5d86f3b0c0050e462872b00961280672', 'CÃ©dric Lombardot', 'cedric.lombardot@spyrit.net', 1, '40')] [Native code: 1146] [Native message: La table 'venio_client_install.liveuser_users' n'existe pas] ) [package] =&gt; LiveUser_Admin [level] =&gt; exception [time] =&gt; 1182777401.1783 [context] =&gt; Array ( [file] =&gt; D:\WEB\EasyPHP 2.0b1\www\PEAR\LiveUser\Admin\Storage\MDB2.php [line] =&gt; 225 [function] =&gt; exec [class] =&gt; LiveUser_Admin_Storage_MDB2 ) [message] =&gt; Couldn't create the query, reason: MDB2 Error: no such table-_doQuery: [Error message: Could not execute statement] [Last executed query: INSERT INTO liveuser_users (handle, passwd, name, mail, is_active, auth_user_id) VALUES ('cedric', '5d86f3b0c0050e462872b00961280672', 'CÃ©dric Lombardot', 'cedric.lombardot@spyrit.net', 1, '40')] [Native code: 1146] [Native message: La table 'venio_client_install.liveuser_users' n'existe pas] ) )</pre>]]></content:encoded>
      <description><![CDATA[<pre>LiveUser_Admin Bug
Reported by cedric
2007-06-25T13:28:51+00:00
PHP: 5.2.0 OS: XP Package Version: 0.3.9

Description:
------------
When I attempt to create a new user with one DB for authContainers and one for permContainer LiveUser_Admin make the auth request on the permContainer.

If I add setAdminAuthContainer it Return always an error

Test script:
---------------
$LUA =&amp; LiveUser_Admin::factory($conf, 'FR');
$LUA-&gt;init();
$data = array('handle'    =&gt; 'cedric',
                  'passwd'    =&gt; 'azc+XOC1987',
				  'name' =&gt; 'CÃ©dric Lombardot',
                  'mail'     =&gt; 'cedric.lombardot@spyrit.net',
                  'is_active' =&gt; '1',
                  'perm_type' =&gt; LIVEUSER_MASTERADMIN_TYPE_ID 
                  );

$userId = $LUA-&gt;addUser($data);
print_r( $LUA-&gt;getErrors());


Actual result:
--------------
========ERROR MESSAGE ====================================
Array ( [0] =&gt; Array ( [code] =&gt; -4 [params] =&gt; Array ( [reason] =&gt; MDB2 Error: no such table-_doQuery: [Error message: Could not execute statement] [Last executed query: INSERT INTO liveuser_users (handle, passwd, name, mail, is_active, auth_user_id) VALUES ('cedric', '5d86f3b0c0050e462872b00961280672', 'CÃ©dric Lombardot', 'cedric.lombardot@spyrit.net', 1, '40')] [Native code: 1146] [Native message: La table 'venio_client_install.liveuser_users' n'existe pas] ) [package] =&gt; LiveUser_Admin [level] =&gt; exception [time] =&gt; 1182777401.1783 [context] =&gt; Array ( [file] =&gt; D:\WEB\EasyPHP 2.0b1\www\PEAR\LiveUser\Admin\Storage\MDB2.php [line] =&gt; 225 [function] =&gt; exec [class] =&gt; LiveUser_Admin_Storage_MDB2 ) [message] =&gt; Couldn't create the query, reason: MDB2 Error: no such table-_doQuery: [Error message: Could not execute statement] [Last executed query: INSERT INTO liveuser_users (handle, passwd, name, mail, is_active, auth_user_id) VALUES ('cedric', '5d86f3b0c0050e462872b00961280672', 'CÃ©dric Lombardot', 'cedric.lombardot@spyrit.net', 1, '40')] [Native code: 1146] [Native message: La table 'venio_client_install.liveuser_users' n'existe pas] ) )</pre>]]></description>
      <dc:date>2007-06-26T07:22:48+00:00</dc:date>
      <dc:creator>cedric &amp;#x64;&amp;#111;&amp;#x74; lombardot &amp;#x61;&amp;#116; spyrit &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>LiveUser_Admin Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/9706">
      <title>LiveUser_Admin: Bug 9706 [Open] PDO Storage Module Incomplete</title>
      <link>http://pear.php.net/bugs/9706</link>
      <content:encoded><![CDATA[<pre>LiveUser_Admin Bug
Reported by aschiffler@...
2006-12-28T15:15:04+00:00
PHP: 5.0.0 OS: Linux Package Version: 

Description:
------------
Function nextId() in LiveUser_Admin-0.3.9/Storage/PDO.php is not implemented. 

Initial call to $LUA-&gt;addUser() works, but any subsequent call fails because no new index ID is created.



Test script:
---------------
Run LiveUser_Admin/docs/examples/example1/User.php with PDO backend.


Expected result:
----------------
20 User are created.

Actual result:
--------------
Database errors after the first user was inserted.</pre>]]></content:encoded>
      <description><![CDATA[<pre>LiveUser_Admin Bug
Reported by aschiffler@...
2006-12-28T15:15:04+00:00
PHP: 5.0.0 OS: Linux Package Version: 

Description:
------------
Function nextId() in LiveUser_Admin-0.3.9/Storage/PDO.php is not implemented. 

Initial call to $LUA-&gt;addUser() works, but any subsequent call fails because no new index ID is created.



Test script:
---------------
Run LiveUser_Admin/docs/examples/example1/User.php with PDO backend.


Expected result:
----------------
20 User are created.

Actual result:
--------------
Database errors after the first user was inserted.</pre>]]></description>
      <dc:date>2009-03-15T03:23:45+00:00</dc:date>
      <dc:creator>aschiffler &amp;#x61;&amp;#116; ferzkopp &amp;#x64;&amp;#111;&amp;#x74; net</dc:creator>
      <dc:subject>LiveUser_Admin Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/7041">
      <title>LiveUser_Admin: Feature/Change Request 7041 [Analyzed] getRights() on an unassigned group returns nothing</title>
      <link>http://pear.php.net/bugs/7041</link>
      <content:encoded><![CDATA[<pre>LiveUser_Admin Feature/Change Request
Reported by msadagopan@...
2006-03-06T23:07:23+00:00
PHP: 5.1.2 OS: Linux Package Version: 0.3.7

Description:
------------
Package              Version  State
LiveUser             0.16.10  beta
LiveUser_Admin       0.3.7    beta

System 	Linux ubuntu 2.6.12-10-386 #1 Mon Feb 13 12:13:15 UTC 2006 i686
Build Date 	Feb 21 2006 10:09:40

'./configure' '--with-apxs2=/usr/bin/apxs2' '--with-mysql=/usr/local/mysql' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-mysql-sock=/tmp/mysql.sock' '--with-sqlite' '--enable-sqlite-utf8' '--with-zlib' '--with-zlib-dir' '--with-bz2' '--with-gd' '--enable-gd' '--enable-gd-native-ttf' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--with-ttf' '--with-freetype-dir=/usr/local' '--with-iconv=/usr/local' '--with-curl=/usr/local' '--enable-track-vars' '--with-gettext' '--with-config-file-path=/etc/apache2' '--enable-trans-id' '--enable-ftp' '--enable-mbstring' '--with-tidy' '--with-xsl'

Test script:
---------------
//LUA -&gt; LiveUser_Admin

$data = array('application_define_name' =&gt; 'APP_WORLD');
$app_id = $LUA-&gt;perm-&gt;addApplication($data);

$data = array(
'application_id' =&gt; $app_id,
'area_define_name' =&gt; 'AREA_FOO',);
$area_id  = $LUA-&gt;perm-&gt;addArea($data);

$data = array(
'area_id' =&gt; $area_id,
'right_define_name' =&gt; 'INSERT',
'has_implied' =&gt; FALSE);
$right_id  = $LUA-&gt;perm-&gt;addRight($data);

$data = array(
'group_define_name' =&gt; 'GRP_TEST');
$group_id = $LUA-&gt;perm-&gt;addGroup($data);

$data = array(
'group_id' =&gt; $group_id,
'right_id' =&gt; $right_id,
'right_level' =&gt; '1');
$granted = $LUA-&gt;perm-&gt;grantGroupRight($data);

$params = array(
'fields' =&gt; array('right_id','right_define_name','right_level'),
'filters' =&gt; array('group_id' =&gt; $group_id),
'by_group' =&gt; TRUE,);
        
$grp_rights = $LUA-&gt;perm-&gt;getRights($params, TRUE);

print_r($grp_rights);

Expected result:
----------------
array(1) {
  [0]=&gt;
  array(3) {
    [&quot;right_id&quot;]=&gt;
    string(3) &quot;&lt;right_id&gt;&quot; //the $right_id 
    [&quot;right_define_name&quot;]=&gt;
    string(6) &quot;INSERT&quot;
    [&quot;right_level&quot;]=&gt;
    string(1) &quot;1&quot;
  }


Actual result:
--------------
array(0)

The final generated query @ LiveUser/Admin/Storage/SQL.php in the function select()

SELECT liveuser_rights.right_id AS right_id, liveuser_rights.right_define_name AS right_define_name, liveuser_grouprights.right_level AS right_level FROM liveuser_rights, liveuser_groupusers, liveuser_grouprights WHERE liveuser_rights.right_id = liveuser_grouprights.right_id AND liveuser_grouprights.group_id = liveuser_groupusers.group_id AND liveuser_groupusers.group_id = 27

Its joining the 'liveuser_groupusers' table also. But in this case, since a user hasn't been assigned to the group 'GRP_TEST', getRights() returns nothing.</pre>]]></content:encoded>
      <description><![CDATA[<pre>LiveUser_Admin Feature/Change Request
Reported by msadagopan@...
2006-03-06T23:07:23+00:00
PHP: 5.1.2 OS: Linux Package Version: 0.3.7

Description:
------------
Package              Version  State
LiveUser             0.16.10  beta
LiveUser_Admin       0.3.7    beta

System 	Linux ubuntu 2.6.12-10-386 #1 Mon Feb 13 12:13:15 UTC 2006 i686
Build Date 	Feb 21 2006 10:09:40

'./configure' '--with-apxs2=/usr/bin/apxs2' '--with-mysql=/usr/local/mysql' '--with-mysqli=/usr/local/mysql/bin/mysql_config' '--with-mysql-sock=/tmp/mysql.sock' '--with-sqlite' '--enable-sqlite-utf8' '--with-zlib' '--with-zlib-dir' '--with-bz2' '--with-gd' '--enable-gd' '--enable-gd-native-ttf' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--with-ttf' '--with-freetype-dir=/usr/local' '--with-iconv=/usr/local' '--with-curl=/usr/local' '--enable-track-vars' '--with-gettext' '--with-config-file-path=/etc/apache2' '--enable-trans-id' '--enable-ftp' '--enable-mbstring' '--with-tidy' '--with-xsl'

Test script:
---------------
//LUA -&gt; LiveUser_Admin

$data = array('application_define_name' =&gt; 'APP_WORLD');
$app_id = $LUA-&gt;perm-&gt;addApplication($data);

$data = array(
'application_id' =&gt; $app_id,
'area_define_name' =&gt; 'AREA_FOO',);
$area_id  = $LUA-&gt;perm-&gt;addArea($data);

$data = array(
'area_id' =&gt; $area_id,
'right_define_name' =&gt; 'INSERT',
'has_implied' =&gt; FALSE);
$right_id  = $LUA-&gt;perm-&gt;addRight($data);

$data = array(
'group_define_name' =&gt; 'GRP_TEST');
$group_id = $LUA-&gt;perm-&gt;addGroup($data);

$data = array(
'group_id' =&gt; $group_id,
'right_id' =&gt; $right_id,
'right_level' =&gt; '1');
$granted = $LUA-&gt;perm-&gt;grantGroupRight($data);

$params = array(
'fields' =&gt; array('right_id','right_define_name','right_level'),
'filters' =&gt; array('group_id' =&gt; $group_id),
'by_group' =&gt; TRUE,);
        
$grp_rights = $LUA-&gt;perm-&gt;getRights($params, TRUE);

print_r($grp_rights);

Expected result:
----------------
array(1) {
  [0]=&gt;
  array(3) {
    [&quot;right_id&quot;]=&gt;
    string(3) &quot;&lt;right_id&gt;&quot; //the $right_id 
    [&quot;right_define_name&quot;]=&gt;
    string(6) &quot;INSERT&quot;
    [&quot;right_level&quot;]=&gt;
    string(1) &quot;1&quot;
  }


Actual result:
--------------
array(0)

The final generated query @ LiveUser/Admin/Storage/SQL.php in the function select()

SELECT liveuser_rights.right_id AS right_id, liveuser_rights.right_define_name AS right_define_name, liveuser_grouprights.right_level AS right_level FROM liveuser_rights, liveuser_groupusers, liveuser_grouprights WHERE liveuser_rights.right_id = liveuser_grouprights.right_id AND liveuser_grouprights.group_id = liveuser_groupusers.group_id AND liveuser_groupusers.group_id = 27

Its joining the 'liveuser_groupusers' table also. But in this case, since a user hasn't been assigned to the group 'GRP_TEST', getRights() returns nothing.</pre>]]></description>
      <dc:date>2006-08-14T08:45:40+00:00</dc:date>
      <dc:creator>msadagopan &amp;#x61;&amp;#116; wltcapital &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>LiveUser_Admin Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
