This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nodequeue.admin.inc b/nodequeue.admin.inc | |
index 2e91f58..d2c5429 100644 | |
--- a/nodequeue.admin.inc | |
+++ b/nodequeue.admin.inc | |
@@ -777,6 +777,7 @@ function nodequeue_admin_delete_submit($formid, &$form_state) { | |
* Rendered HTML or render array for the page. | |
*/ | |
function nodequeue_admin_view($queue, $subqueue = array()) { | |
+ | |
// If a specific subqueue is requested, display that one. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Load file from disk. | |
echo 'Managing unmanaged files:\n'; | |
// Change the DIRECTORY_NAME below for each directory you'd like to process. | |
foreach (new DirectoryIterator('DIRECTORY_NAME') as $unmanaged_file) { | |
if(($unmanaged_file->isDir()) | ($unmanaged_file->isDot()) | (!$unmanaged_file->valid())) continue; | |
$filename = $unmanaged_file->getFilename(); | |
if($filename == '.htaccess') continue; | |
$pathname = $unmanaged_file->getPathname(); |