Changeset 590406
- Timestamp:
- 08/25/2012 11:57:44 PM (14 years ago)
- Location:
- user-files/trunk
- Files:
-
- 3 edited
-
functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
user_files.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
user-files/trunk/functions.php
r590390 r590406 76 76 77 77 78 $dnlLink = get_permalink().'?theDLfile='.$userID.'/'.$Thefile; 79 $DelLink = get_permalink().'?deletefile='.$userID.'/'.$Thefile; 78 $dnlLink = get_page_uri($post->ID).'?theDLfile='.$userID.'/'.$Thefile; 79 $DelLink = get_page_uri($post->ID).'?deletefile='.$userID.'/'.$Thefile; 80 80 81 81 82 -
user-files/trunk/readme.txt
r590397 r590406 5 5 Requires at least: 3.0 6 6 Tested up to: 3.4.1 7 Stable Tag:2.3. 17 Stable Tag:2.3.2 8 8 9 9 User files allows you to upload files for a specific user to download. Custom Icons and categories are available to more easily search and filter files. … … 103 103 =2.3.1= 104 104 *fixed help file 105 106 =2.3.2= 107 *fixed permalink uploading issue -
user-files/trunk/user_files.php
r590397 r590406 5 5 Description: Plugin to manage files for your users. You can upload files for your users to access, files uploaded to the user account are only viewable by the designated user. Files can be sorted and uploaded by category. Options available for user to add and/or delete files, upload notifications, widgets, and shortcode. You can also use custom icons for files. 6 6 Author: Innovative Solutions 7 Version: 2.3. 17 Version: 2.3.2 8 8 Author URI: http://www.whereyoursolutionis.com/author/scriptonite/ 9 9 */ … … 1388 1388 1389 1389 $MaxSet=1000000*(int)$max_post; 1390 $page = array_shift( explode( '?', $_SERVER['REQUEST_URI'] ) );1391 1390 ?> 1392 1391 1393 1392 <tr><td> 1394 <form enctype="multipart/form-data" action="<?php echo $page; ?>" method="POST" >1393 <form enctype="multipart/form-data" action="<?php the_permalink(); ?>" method="POST" > 1395 1394 <?php _e('Choose a file to upload, your upload limit is '); ?> <?php echo $max_post; ?>M <br /> 1396 1395
Note: See TracChangeset
for help on using the changeset viewer.